diff --git a/linter_exclusions.yml b/linter_exclusions.yml index 4c531bc23b7..15382387344 100644 --- a/linter_exclusions.yml +++ b/linter_exclusions.yml @@ -819,6 +819,11 @@ backup vault backup-properties set: cross_region_restore_flag: rule_exclusions: - option_length_too_long +backup vault encryption update: + parameters: + infrastructure_encryption: + 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 2fae0ba17eb..71b07016adb 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 @@ -170,6 +170,10 @@ def backup_resource_vault_config_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_resource_vault_configs +def backup_resource_encryption_config_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).backup_resource_encryption_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/_help.py b/src/azure-cli/azure/cli/command_modules/backup/_help.py index 91076d14086..1b316eb9c07 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_help.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_help.py @@ -495,3 +495,51 @@ text: az backup vault show --name MyRecoveryServicesVault --resource-group MyResourceGroup crafted: true """ +helps['backup vault identity'] = """ +type: group +short-summary: Identity details of a Recovery Services Vault. +""" +helps['backup vault identity assign'] = """ +type: command +short-summary: Assign Identities to Recovery Services vault. +examples: + - name: Assign Identities to Recovery Services vault. (autogenerated) + text: az backup vault identity assign --system-assigned --user-assigned MyIdentityId1 --resource-group MyResourceGroup --vault-name MyVault + crafted: true +""" +helps['backup vault identity remove'] = """ +type: command +short-summary: Remove Identities of Recovery Services vault. +examples: + - name: Remove Identities of Recovery Services vault. (autogenerated) + text: az backup vault identity remove --system-assigned --user-assigned MyIdentityId1 --resource-group MyResourceGroup --vault-name MyVault + crafted: true +""" +helps['backup vault identity show'] = """ +type: command +short-summary: Show Identities of Recovery Services vault. +examples: + - name: Show Identities of Recovery Services vault. (autogenerated) + text: az backup vault identity show --resource-group MyResourceGroup --vault-name MyVault + crafted: true +""" +helps['backup vault encryption'] = """ +type: group +short-summary: Encryption details of a Recovery Services Vault. +""" +helps['backup vault encryption update'] = """ +type: command +short-summary: Update encryption properties of a Recovery Services Vault. +examples: + - name: Update encryption properties to use user assigned identity of a Recovery Services Vault. + text: az backup vault encryption update --encryption-key-id MyEncryptionKeyId --mi-user-assigned MyUserAssignedIdentityId --resource-group MyResourceGroup --vault-name MyVault + - name: Update encryption properties to use system assigned identity of a Recovery Services Vault. + text: az backup vault encryption update --encryption-key-id MyEncryptionKeyId --mi-system-assigned --resource-group MyResourceGroup --vault-name MyVault +""" +helps['backup vault encryption show'] = """ +type: command +short-summary: Show details of encryption properties of a Recovery Services Vault. +examples: + - name: Show details of encryption properties of a Recovery Services Vault. + text: az backup vault encryption show --resource-group MyResourceGroup --vault-name MyVault +""" 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 5a5b92c160f..9b09cd853e9 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -46,6 +46,7 @@ target_tier_help = """ The destination/target tier to which a particular recovery point has to be moved.""" tier_help = """ Provide 'tier' parameter to filter recovery points.""" rehyd_priority_type_help = """The type of priority to be maintained while rehydrating a recovery point """ +infrastructure_encryption_type_help = """Use this parameter to enable/disable infrastructure encryption. This must be set when configuring encryption of the vault for the first time. Once enabled/disabled, infrastructure encryption setting cannot be changed. Default value: Disabled. Allowed values: Enabled, Disabled""" vault_name_type = CLIArgumentType(help='Name of the Recovery services vault.', options_list=['--vault-name', '-v'], completer=get_resource_name_completion_list('Microsoft.RecoveryServices/vaults')) container_name_type = CLIArgumentType(help=container_name_help, options_list=['--container-name', '-c']) @@ -71,6 +72,14 @@ target_tier_type = CLIArgumentType(help=target_tier_help, arg_type=get_enum_type(allowed_target_tier_type_chk_archivable), options_list=['--target-tier']) tier_type = CLIArgumentType(help=tier_help, arg_type=get_enum_type(allowed_tier_type), options_list=['--tier']) rehyd_priority_type = CLIArgumentType(help=rehyd_priority_type_help, arg_type=get_enum_type(allowed_rehyd_priority_type), options_list=['--rehydration-priority']) +mi_user_assigned_type = CLIArgumentType(options_list=['--mi-user-assigned'], help="UserAssigned Identity Id to be used for CMK encryption, this will be applicable for encryption using userassigned identity") +mi_system_assigned_type = CLIArgumentType(action='store_true', options_list=['--mi-system-assigned'], help="Provide this flag to use system assigned identity for encryption.") +encryption_key_id_type = CLIArgumentType(options_list=['--encryption-key-id'], help="The encryption key id you want to use for encryption") +infrastructure_encryption_type = CLIArgumentType(options_list=['--infrastructure-encryption'], arg_type=get_enum_type(['Enabled', 'Disabled']), help=infrastructure_encryption_type_help) +user_assigned_type = CLIArgumentType(nargs='+', options_list=['--user-assigned'], help="Space-separated list of userassigned identities to be assigned to Recovery Services Vault.") +user_assigned_remove_type = CLIArgumentType(nargs='*', options_list=['--user-assigned'], help="Space-separated list of userassigned identities to be removed from Recovery Services Vault.") +system_assigned_remove_type = CLIArgumentType(action='store_true', options_list=['--system-assigned'], help="Provide this flag to remove system assigned identity for Recovery Services Vault.") +system_assigned_type = CLIArgumentType(action='store_true', options_list=['--system-assigned'], help="Provide this flag to enable system assigned identity for Recovery Services Vault.") # pylint: disable=too-many-statements @@ -92,6 +101,33 @@ def load_arguments(self, _): 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.') + # Identity + with self.argument_context('backup vault identity assign') as c: + c.argument('vault_name', vault_name_type) + c.argument('system_assigned', system_assigned_type) + c.argument('user_assigned', user_assigned_type) + + with self.argument_context('backup vault identity remove') as c: + c.argument('vault_name', vault_name_type) + c.argument('system_assigned', system_assigned_remove_type) + c.argument('user_assigned', user_assigned_remove_type) + + with self.argument_context('backup vault identity show') as c: + c.argument('vault_name', vault_name_type) + + # Encryption + with self.argument_context('backup vault encryption') as c: + c.argument('vault_name', vault_name_type) + + with self.argument_context('backup vault encryption update') as c: + c.argument('encryption_key_id', encryption_key_id_type) + c.argument('infrastructure_encryption', infrastructure_encryption_type) + c.argument('mi_user_assigned', mi_user_assigned_type) + c.argument('mi_system_assigned', mi_system_assigned_type) + + with self.argument_context('backup vault encryption show') as c: + c.argument('vault_name', vault_name_type) + # Container with self.argument_context('backup container') as c: c.argument('vault_name', vault_name_type, id_part='name') @@ -308,6 +344,7 @@ def load_arguments(self, _): c.argument('use_secondary_region', action='store_true', help='Use this flag to show recoverypoints in secondary region.') c.argument('rehydration_duration', type=int, help='Set the maximum time, in days (between 10-30, both inclusive) for which the recovery point stays in hydrated state. Default: 15') c.argument('rehydration_priority', rehyd_priority_type) + c.argument('disk_encryption_set_id', options_list=['--disk-encryption-set-id'], help='The disk encryption set id is used for encrypting restored disks. Please ensure access to disk encryption set id that is specified here.') with self.argument_context('backup restore restore-azurefileshare') as c: c.argument('resolve_conflict', resolve_conflict_type) diff --git a/src/azure-cli/azure/cli/command_modules/backup/commands.py b/src/azure-cli/azure/cli/command_modules/backup/commands.py index ef8914685d5..a3b8a603321 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/commands.py @@ -8,8 +8,7 @@ protection_policies_cf, backup_policies_cf, protected_items_cf, backups_cf, backup_jobs_cf, \ job_details_cf, job_cancellations_cf, recovery_points_cf, restores_cf, backup_storage_configs_cf, \ item_level_recovery_connections_cf, backup_protected_items_cf, backup_protectable_items_cf, \ - protection_containers_cf, protection_intent_cf # pylint: disable=unused-variable - + protection_containers_cf, protection_intent_cf, backup_resource_encryption_config_cf # pylint: disable=unused-variable from azure.cli.command_modules.backup._format import ( transform_container_list, transform_policy_list, transform_item_list, transform_job_list, transform_recovery_point_list, transform_container, transform_item, transform_protectable_item_list, transform_job, @@ -35,6 +34,11 @@ def load_command_table(self, _): g.custom_command('backup-properties show', 'get_backup_properties', client_factory=backup_storage_configs_cf) g.custom_command('backup-properties set', 'set_backup_properties', client_factory=backup_storage_configs_cf) g.custom_command('delete', 'delete_vault', confirmation=True) + g.custom_command('identity assign', 'assign_identity') + g.custom_command('identity remove', 'remove_identity') + g.custom_command('identity show', 'show_identity') + g.custom_command('encryption update', 'update_encryption') + g.custom_command('encryption show', 'show_encryption', client_factory=backup_resource_encryption_config_cf) with self.command_group('backup container', backup_custom_base, client_factory=protection_containers_cf) as g: g.show_command('show', 'show_container', client_factory=backup_protection_containers_cf, table_transformer=transform_container) 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 817c58dd991..d40e5082a7a 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -15,7 +15,8 @@ from msrest.paging import Paged from msrestazure.tools import parse_resource_id, is_valid_resource_id -from azure.mgmt.recoveryservices.models import Vault, VaultProperties, Sku, SkuName +from azure.mgmt.recoveryservices.models import Vault, VaultProperties, Sku, SkuName, PatchVault, IdentityData, \ + CmkKeyVaultProperties, CmkKekIdentity, VaultPropertiesEncryption, UserIdentity from azure.mgmt.recoveryservicesbackup.models import ProtectedItemResource, AzureIaaSComputeVMProtectedItem, \ AzureIaaSClassicComputeVMProtectedItem, ProtectionState, IaasVMBackupRequest, BackupRequestResource, \ IaasVMRestoreRequest, RestoreRequestResource, BackupManagementType, WorkloadType, OperationStatusValues, \ @@ -26,8 +27,7 @@ from azure.cli.core.util import CLIError from azure.core.exceptions import HttpResponseError from azure.cli.core.azclierror import RequiredArgumentMissingError, InvalidArgumentValueError, \ - MutuallyExclusiveArgumentError, ArgumentUsageError - + MutuallyExclusiveArgumentError, ArgumentUsageError, ValidationError 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, @@ -35,7 +35,7 @@ protected_items_cf, backup_resource_vault_config_cf, recovery_points_crr_cf, aad_properties_cf, cross_region_restore_cf, backup_crr_job_details_cf, crr_operation_status_cf, backup_crr_jobs_cf, backup_protected_items_crr_cf, protection_container_operation_results_cf, _backup_client_factory, - recovery_points_recommended_cf) + recovery_points_recommended_cf, backup_resource_encryption_config_cf) import azure.cli.command_modules.backup.custom_common as common @@ -106,7 +106,7 @@ def create_vault(client, vault_name, resource_group_name, location, tags=None): vault_sku = Sku(name=SkuName.standard) vault_properties = VaultProperties() vault = Vault(location=location, sku=vault_sku, properties=vault_properties, tags=tags) - return client.create_or_update(resource_group_name, vault_name, vault) + return client.begin_create_or_update(resource_group_name, vault_name, vault) def _force_delete_vault(cmd, vault_name, resource_group_name): @@ -189,6 +189,199 @@ def list_vaults(client, resource_group_name=None): return client.list_by_subscription_id() +def assign_identity(client, resource_group_name, vault_name, system_assigned=None, user_assigned=None): + vault_details = client.get(resource_group_name, vault_name) + + curr_identity_details = vault_details.identity + curr_identity_type = 'none' + identity_type = 'none' + user_assigned_identity = None + + if curr_identity_details is not None: + curr_identity_type = curr_identity_details.type.lower() + + if user_assigned is not None: + userid = UserIdentity() + user_assigned_identity = dict() + for userMSI in user_assigned: + user_assigned_identity[userMSI] = userid + if system_assigned is not None or curr_identity_type in ["systemassigned", "systemassigned, userassigned"]: + identity_type = "systemassigned,userassigned" + else: + identity_type = "userassigned" + elif system_assigned is not None: + if curr_identity_type in ["systemassigned, userassigned", "userassigned"]: + identity_type = "systemassigned,userassigned" + else: + identity_type = "systemassigned" + else: + raise RequiredArgumentMissingError( + """ + Invalid parameters, no operation specified. + """) + + identity_data = IdentityData(type=identity_type, user_assigned_identities=user_assigned_identity) + vault = PatchVault(identity=identity_data) + return client.begin_update(resource_group_name, vault_name, vault) + + +def remove_identity(client, resource_group_name, vault_name, system_assigned=None, user_assigned=None): + vault_details = client.get(resource_group_name, vault_name) + + curr_identity_details = vault_details.identity + curr_identity_type = 'none' + user_assigned_identity = None + identity_type = 'none' + + if curr_identity_details is not None: + curr_identity_type = curr_identity_details.type.lower() + + if user_assigned is not None: + if curr_identity_type not in ["userassigned", "systemassigned, userassigned"]: + raise ArgumentUsageError( + """ + There are no user assigned identities to be removed. + """) + userid = None + remove_count_of_userMSI = 0 + totaluserMSI = 0 + user_assigned_identity = dict() + for element in curr_identity_details.user_assigned_identities.keys(): + if element in user_assigned: + remove_count_of_userMSI += 1 + totaluserMSI += 1 + if len(user_assigned) == 0: + remove_count_of_userMSI = totaluserMSI + for userMSI in user_assigned: + user_assigned_identity[userMSI] = userid + if system_assigned is not None: + if curr_identity_type != "systemassigned, userassigned": + raise ArgumentUsageError( + """ + System assigned identity is not enabled for Recovery Services Vault. + """) + if remove_count_of_userMSI == totaluserMSI: + identity_type = 'none' + user_assigned_identity = None + else: + identity_type = "userassigned" + else: + if curr_identity_type == 'systemassigned, userassigned': + if remove_count_of_userMSI == totaluserMSI: + identity_type = 'systemassigned' + user_assigned_identity = None + else: + identity_type = 'systemassigned,userassigned' + else: + if remove_count_of_userMSI == totaluserMSI: + identity_type = 'none' + user_assigned_identity = None + else: + identity_type = 'userassigned' + elif system_assigned is not None: + return _remove_system_identity(client, resource_group_name, vault_name, curr_identity_type) + else: + raise RequiredArgumentMissingError( + """ + Invalid parameters, no operation specified. + """) + + identity_data = IdentityData(type=identity_type, user_assigned_identities=user_assigned_identity) + vault = PatchVault(identity=identity_data) + return client.begin_update(resource_group_name, vault_name, vault) + + +def _remove_system_identity(client, resource_group_name, vault_name, curr_identity_type): + user_assigned_identity = None + identity_type = 'none' + if curr_identity_type not in ["systemassigned", "systemassigned, userassigned"]: + raise ArgumentUsageError( + """ + System assigned identity is not enabled for Recovery Services Vault. + """) + if curr_identity_type == 'systemassigned': + identity_type = 'none' + else: + identity_type = 'userassigned' + + identity_data = IdentityData(type=identity_type, user_assigned_identities=user_assigned_identity) + vault = PatchVault(identity=identity_data) + return client.begin_update(resource_group_name, vault_name, vault) + + +def show_identity(client, resource_group_name, vault_name): + return client.get(resource_group_name, vault_name).identity + + +def update_encryption(cmd, client, resource_group_name, vault_name, encryption_key_id, infrastructure_encryption=None, + mi_user_assigned=None, mi_system_assigned=None): + keyVaultproperties = CmkKeyVaultProperties(key_uri=encryption_key_id) + + vault_details = client.get(resource_group_name, vault_name) + encryption_details = backup_resource_encryption_config_cf(cmd.cli_ctx).get(vault_name, resource_group_name) + encryption_type = encryption_details.properties.encryption_at_rest_type + identity_details = vault_details.identity + identity_type = 'none' + + if identity_details is not None: + identity_type = identity_details.type.lower() + if identity_details is None or identity_type == 'none': + raise ValidationError( + """ + Please enable identities of Recovery Services Vault + """) + + if encryption_type != "CustomerManaged": + if mi_system_assigned is None and mi_user_assigned is None: + raise RequiredArgumentMissingError( + """ + Please provide user assigned identity id using --identity-id paramter or set --use-system-assigned flag + """) + if infrastructure_encryption is None: + infrastructure_encryption = "Disabled" + if mi_user_assigned is not None and mi_system_assigned: + raise MutuallyExclusiveArgumentError( + """ + Both --identity-id and --use-system-assigned parameters can't be given at the same time. + """) + + kekIdentity = None + is_identity_present = False + if mi_user_assigned is not None: + if identity_type not in ["userassigned", "systemassigned, userassigned"]: + raise ArgumentUsageError( + """ + Please add user assigned identity for Recovery Services Vault. + """) + if mi_user_assigned in identity_details.user_assigned_identities.keys(): + is_identity_present = True + if not is_identity_present: + raise InvalidArgumentValueError( + """ + This user assigned identity not available for Recovery Services Vault. + """) + + if mi_system_assigned: + if identity_type not in ["systemassigned", "systemassigned, userassigned"]: + raise ArgumentUsageError( + """ + Please make sure that system assigned identity is enabled for Recovery Services Vault + """) + if mi_user_assigned is not None or mi_system_assigned: + kekIdentity = CmkKekIdentity(user_assigned_identity=mi_user_assigned, + use_system_assigned_identity=mi_system_assigned) + encryption_data = VaultPropertiesEncryption(key_vault_properties=keyVaultproperties, kek_identity=kekIdentity, + infrastructure_encryption=infrastructure_encryption) + vault_properties = VaultProperties(encryption=encryption_data) + vault = PatchVault(properties=vault_properties) + client.begin_update(resource_group_name, vault_name, vault).result() + + +def show_encryption(client, resource_group_name, vault_name): + encryption_config_response = client.get(vault_name, resource_group_name) + return encryption_config_response + + def set_backup_properties(cmd, client, vault_name, resource_group_name, backup_storage_redundancy=None, soft_delete_feature_state=None, cross_region_restore_flag=None): if soft_delete_feature_state: @@ -630,7 +823,15 @@ def _should_use_original_storage_account(recovery_point, restore_to_staging_stor def _get_trigger_restore_properties(rp_name, vault_location, storage_account_id, source_resource_id, target_rg_id, use_original_storage_account, restore_disk_lun_list, - rehydration_duration, rehydration_priority, tier): + rehydration_duration, rehydration_priority, tier, disk_encryption_set_id, + encryption, recovery_point, use_secondary_region): + + if disk_encryption_set_id is not None: + if not(encryption.properties.encryption_at_rest_type == "CustomerManaged" and + recovery_point.properties.is_managed_virtual_machine and + not(recovery_point.properties.is_source_vm_encrypted) and use_secondary_region is None): + raise InvalidArgumentValueError("disk_encryption_set_id can't be specified") + if tier == 'VaultArchive': rehyd_duration = 'P' + str(rehydration_duration) + 'D' rehydration_info = RecoveryPointRehydrationInfo(rehydration_retention_duration=rehyd_duration, @@ -646,7 +847,8 @@ def _get_trigger_restore_properties(rp_name, vault_location, storage_account_id, target_resource_group_id=target_rg_id, original_storage_account_option=use_original_storage_account, restore_disk_lun_list=restore_disk_lun_list, - recovery_point_rehydration_info=rehydration_info) + recovery_point_rehydration_info=rehydration_info, + disk_encryption_set_id=disk_encryption_set_id) else: trigger_restore_properties = IaasVMRestoreRequest( @@ -658,7 +860,8 @@ def _get_trigger_restore_properties(rp_name, vault_location, storage_account_id, source_resource_id=source_resource_id, target_resource_group_id=target_rg_id, original_storage_account_option=use_original_storage_account, - restore_disk_lun_list=restore_disk_lun_list) + restore_disk_lun_list=restore_disk_lun_list, + disk_encryption_set_id=disk_encryption_set_id) return trigger_restore_properties @@ -667,7 +870,7 @@ def _get_trigger_restore_properties(rp_name, vault_location, storage_account_id, def restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, storage_account, target_resource_group=None, restore_to_staging_storage_account=None, restore_only_osdisk=None, diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None, rehydration_duration=15, - rehydration_priority=None): + rehydration_priority=None, disk_encryption_set_id=None): item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, item_name, "AzureIaasVM", "VM", use_secondary_region) @@ -687,6 +890,8 @@ def restore_disks(cmd, client, resource_group_name, vault_name, container_name, vault = vaults_cf(cmd.cli_ctx).get(resource_group_name, vault_name) vault_location = vault.location + encryption = backup_resource_encryption_config_cf(cmd.cli_ctx).get(vault_name, resource_group_name) + # 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) @@ -741,7 +946,8 @@ def restore_disks(cmd, client, resource_group_name, vault_name, container_name, rehydration_duration, rehydration_priority, None if rp_list[0]. properties.recovery_point_tier_details is None else - rp_list[0].tier_type) + rp_list[0].tier_type, disk_encryption_set_id, + encryption, recovery_point, use_secondary_region) trigger_restore_request = RestoreRequestResource(properties=trigger_restore_properties) if use_secondary_region: 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 abbc6dc42af..595e80b6432 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 @@ -382,15 +382,14 @@ def disable_auto_for_azure_wl(client, resource_group_name, vault_name, item_name def restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, storage_account, target_resource_group=None, restore_to_staging_storage_account=None, restore_only_osdisk=None, diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None, rehydration_duration=15, - rehydration_priority=None): + rehydration_priority=None, disk_encryption_set_id=None): if rehydration_duration < 10 or rehydration_duration > 30: raise InvalidArgumentValueError('--rehydration-duration must have a value between 10 and 30 (both inclusive).') - return custom.restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, storage_account, target_resource_group, restore_to_staging_storage_account, restore_only_osdisk, diskslist, restore_as_unmanaged_disks, use_secondary_region, - rehydration_duration, rehydration_priority) + rehydration_duration, rehydration_priority, disk_encryption_set_id) 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/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 58be2282a46..512d328c87a 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,21 +17,21 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A26.0599206Z''\"","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-07-13T07%3A58%3A32.120762Z''\"","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: - - '484' + - '483' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:26 GMT + - Tue, 13 Jul 2021 07:58:32 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:30.0070470Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:30.0070470Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T07:58:35.4068445Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T07:58:35.4068445Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 07:59:01 GMT expires: - '-1' pragma: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 07:58:59 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 07:59:01 GMT etag: - - '"0x8D934AE992671A5"' + - '"0x8D945D4141CB42C"' last-modified: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 07:59:02 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -147,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -164,7 +164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 07:59:02 GMT expires: - '-1' pragma: @@ -189,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -209,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -295,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -315,24 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","name":"StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvxpkc5mxr64qsinm4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3m5mkejasm/providers/Microsoft.Storage/storageAccounts/clitestvxpkc5mxr64qsinm4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","name":"StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxwjqcdjfjsdxdfwxf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg523jlp2qto/providers/Microsoft.Storage/storageAccounts/clitestxwjqcdjfjsdxdfwxf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","name":"StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestm6eopwdgj5icqi7to","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgftuxhbxc3o/providers/Microsoft.Storage/storageAccounts/clitestm6eopwdgj5icqi7to"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggjp5vexbok;clitesttiywkyovuouduehil","name":"StorageContainer;Storage;clitest.rggjp5vexbok;clitesttiywkyovuouduehil","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttiywkyovuouduehil","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggjp5vexbok/providers/Microsoft.Storage/storageAccounts/clitesttiywkyovuouduehil"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","name":"StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestoypr5dfjibpwcp6if","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xbrqcf6l6/providers/Microsoft.Storage/storageAccounts/clitestoypr5dfjibpwcp6if"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","name":"StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttduidxluc6kcgpivk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6spcspvqni/providers/Microsoft.Storage/storageAccounts/clitesttduidxluc6kcgpivk"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","name":"StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bzko354e2edfooet","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj3lk3rkhce/providers/Microsoft.Storage/storageAccounts/clitest6bzko354e2edfooet"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestjdw5rejlhkniqgppt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitestjdw5rejlhkniqgppt"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesty7can45cle24hlrp4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitesty7can45cle24hlrp4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","name":"StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestfyirbb5gvytcafkvo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgocb3jbfyjl/providers/Microsoft.Storage/storageAccounts/clitestfyirbb5gvytcafkvo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '7935' + - '19485' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Tue, 13 Jul 2021 07:59:05 GMT expires: - '-1' pragma: @@ -348,15 +348,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"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 @@ -367,40 +366,34 @@ interactions: Connection: - keep-alive Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2021-01-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-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/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -426,34 +419,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -479,34 +466,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -532,34 +513,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:17:59 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -585,34 +560,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:18:01 GMT + - Tue, 13 Jul 2021 07:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -638,34 +607,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:18:02 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -691,34 +654,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:18:03 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -744,34 +701,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:18:04 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -797,34 +748,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -850,34 +795,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:18:07 GMT + - Tue, 13 Jul 2021 07:59:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -903,34 +842,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/485767cc-7d71-4a40-b1a8-2716da8edd8f?api-version=2021-01-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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' - content-type: - - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Tue, 13 Jul 2021 07:59:16 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -940,8 +869,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -956,47 +885,48 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-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;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg46agqfkrgg;clitestsxed5iyal6p3uv4ie","name":"StorageContainer;Storage;clitest.rg46agqfkrgg;clitestsxed5iyal6p3uv4ie","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsxed5iyal6p3uv4ie","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46agqfkrgg/providers/Microsoft.Storage/storageAccounts/clitestsxed5iyal6p3uv4ie"}},{"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.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","name":"StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bh6xri22tsmwz6mx","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw5nd6h6m7r/providers/Microsoft.Storage/storageAccounts/clitest6bh6xri22tsmwz6mx"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '17884' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:09 GMT + - Tue, 13 Jul 2021 07:59:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' 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 @@ -1006,21 +936,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-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=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1028,11 +962,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:10 GMT + - Tue, 13 Jul 2021 07:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1041,8 +975,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1062,18 +996,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1081,11 +1015,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:12 GMT + - Tue, 13 Jul 2021 07:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1095,7 +1029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '149' x-powered-by: - ASP.NET status: @@ -1115,18 +1049,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1134,11 +1068,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:13 GMT + - Tue, 13 Jul 2021 07:59:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1148,7 +1082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '148' x-powered-by: - ASP.NET status: @@ -1168,18 +1102,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1187,11 +1121,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:14 GMT + - Tue, 13 Jul 2021 07:59:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1201,7 +1135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '147' x-powered-by: - ASP.NET status: @@ -1221,18 +1155,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1240,11 +1174,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:15 GMT + - Tue, 13 Jul 2021 07:59:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1254,7 +1188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '146' x-powered-by: - ASP.NET status: @@ -1274,18 +1208,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1293,11 +1227,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:17 GMT + - Tue, 13 Jul 2021 07:59:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1307,7 +1241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '145' x-powered-by: - ASP.NET status: @@ -1327,18 +1261,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1346,11 +1280,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:18 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1360,7 +1294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '144' x-powered-by: - ASP.NET status: @@ -1380,18 +1314,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1399,11 +1333,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:19 GMT + - Tue, 13 Jul 2021 07:59:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1413,7 +1347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '143' x-powered-by: - ASP.NET status: @@ -1433,18 +1367,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1452,11 +1386,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1466,7 +1400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '142' x-powered-by: - ASP.NET status: @@ -1486,18 +1420,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1505,11 +1439,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:22 GMT + - Tue, 13 Jul 2021 07:59:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1519,7 +1453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '141' x-powered-by: - ASP.NET status: @@ -1539,18 +1473,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1558,11 +1492,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:24 GMT + - Tue, 13 Jul 2021 07:59:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1572,7 +1506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '140' x-powered-by: - ASP.NET status: @@ -1592,18 +1526,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1611,11 +1545,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1625,7 +1559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '139' x-powered-by: - ASP.NET status: @@ -1645,18 +1579,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1664,11 +1598,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:26 GMT + - Tue, 13 Jul 2021 07:59:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1678,7 +1612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '138' x-powered-by: - ASP.NET status: @@ -1698,18 +1632,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1717,11 +1651,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:28 GMT + - Tue, 13 Jul 2021 07:59:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1731,7 +1665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '137' x-powered-by: - ASP.NET status: @@ -1751,18 +1685,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1770,11 +1704,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:29 GMT + - Tue, 13 Jul 2021 07:59:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1784,7 +1718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '136' x-powered-by: - ASP.NET status: @@ -1804,18 +1738,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1823,11 +1757,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1837,7 +1771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '135' x-powered-by: - ASP.NET status: @@ -1857,18 +1791,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1876,11 +1810,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:31 GMT + - Tue, 13 Jul 2021 07:59:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1890,7 +1824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '134' x-powered-by: - ASP.NET status: @@ -1910,18 +1844,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1929,11 +1863,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:33 GMT + - Tue, 13 Jul 2021 07:59:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1943,7 +1877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '133' x-powered-by: - ASP.NET status: @@ -1963,18 +1897,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1982,11 +1916,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:34 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -1996,7 +1930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '132' x-powered-by: - ASP.NET status: @@ -2016,18 +1950,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2035,11 +1969,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:35 GMT + - Tue, 13 Jul 2021 07:59:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2049,7 +1983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '131' x-powered-by: - ASP.NET status: @@ -2069,18 +2003,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2088,11 +2022,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:36 GMT + - Tue, 13 Jul 2021 07:59:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2102,7 +2036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '130' x-powered-by: - ASP.NET status: @@ -2122,18 +2056,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2141,11 +2075,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:38 GMT + - Tue, 13 Jul 2021 07:59:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2155,7 +2089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '129' x-powered-by: - ASP.NET status: @@ -2175,18 +2109,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2194,11 +2128,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2208,7 +2142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '128' x-powered-by: - ASP.NET status: @@ -2228,18 +2162,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2247,11 +2181,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:40 GMT + - Tue, 13 Jul 2021 07:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2261,7 +2195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '127' x-powered-by: - ASP.NET status: @@ -2281,18 +2215,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2300,11 +2234,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:41 GMT + - Tue, 13 Jul 2021 07:59:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2314,7 +2248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '126' x-powered-by: - ASP.NET status: @@ -2334,18 +2268,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2353,11 +2287,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:43 GMT + - Tue, 13 Jul 2021 07:59:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2367,7 +2301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '125' x-powered-by: - ASP.NET status: @@ -2387,18 +2321,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2406,11 +2340,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:44 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2420,7 +2354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '124' x-powered-by: - ASP.NET status: @@ -2440,18 +2374,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2459,11 +2393,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:45 GMT + - Tue, 13 Jul 2021 07:59:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2473,7 +2407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '123' x-powered-by: - ASP.NET status: @@ -2493,18 +2427,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2512,11 +2446,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Tue, 13 Jul 2021 07:59:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2526,7 +2460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '122' x-powered-by: - ASP.NET status: @@ -2546,18 +2480,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2565,11 +2499,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:48 GMT + - Tue, 13 Jul 2021 07:59:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2579,7 +2513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '121' x-powered-by: - ASP.NET status: @@ -2599,18 +2533,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2618,11 +2552,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:49 GMT + - Tue, 13 Jul 2021 07:59: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2632,7 +2566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '120' x-powered-by: - ASP.NET status: @@ -2652,18 +2586,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2671,11 +2605,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:50 GMT + - Tue, 13 Jul 2021 07:59:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2685,7 +2619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '119' x-powered-by: - ASP.NET status: @@ -2705,18 +2639,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2724,11 +2658,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:52 GMT + - Tue, 13 Jul 2021 07:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2738,7 +2672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '118' x-powered-by: - ASP.NET status: @@ -2758,18 +2692,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2777,11 +2711,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Tue, 13 Jul 2021 07:59:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2791,7 +2725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '117' x-powered-by: - ASP.NET status: @@ -2811,18 +2745,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2830,11 +2764,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:54 GMT + - Tue, 13 Jul 2021 07:59:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2844,7 +2778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '116' x-powered-by: - ASP.NET status: @@ -2864,18 +2798,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2883,11 +2817,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:55 GMT + - Tue, 13 Jul 2021 08:00: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2897,7 +2831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '115' x-powered-by: - ASP.NET status: @@ -2917,18 +2851,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2936,11 +2870,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:56 GMT + - Tue, 13 Jul 2021 08:00:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -2950,7 +2884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '114' x-powered-by: - ASP.NET status: @@ -2970,18 +2904,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2989,11 +2923,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:58 GMT + - Tue, 13 Jul 2021 08:00: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3003,7 +2937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '113' x-powered-by: - ASP.NET status: @@ -3023,18 +2957,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3042,11 +2976,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:59 GMT + - Tue, 13 Jul 2021 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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3056,7 +2990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '112' x-powered-by: - ASP.NET status: @@ -3076,18 +3010,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3095,11 +3029,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:00 GMT + - Tue, 13 Jul 2021 08:00:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3109,7 +3043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '111' x-powered-by: - ASP.NET status: @@ -3129,18 +3063,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3148,11 +3082,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Tue, 13 Jul 2021 08:00:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3162,7 +3096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '110' x-powered-by: - ASP.NET status: @@ -3182,18 +3116,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3201,11 +3135,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:03 GMT + - Tue, 13 Jul 2021 08:00: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/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3215,7 +3149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '109' x-powered-by: - ASP.NET status: @@ -3235,18 +3169,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3254,11 +3188,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:04 GMT + - Tue, 13 Jul 2021 08:00:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3268,7 +3202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '108' x-powered-by: - ASP.NET status: @@ -3288,45 +3222,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e34b99aa-1d02-4ec2-8a65-b32bdee985bb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:05 GMT + - Tue, 13 Jul 2021 08:00:10 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '107' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3341,45 +3275,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 08:00: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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '106' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3391,41 +3325,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-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/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 08:00:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -3445,18 +3381,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3464,11 +3400,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 08:00:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3478,7 +3414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '104' x-powered-by: - ASP.NET status: @@ -3498,18 +3434,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3517,11 +3453,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Tue, 13 Jul 2021 08:00:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3531,7 +3467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '103' x-powered-by: - ASP.NET status: @@ -3551,18 +3487,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3570,11 +3506,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:09 GMT + - Tue, 13 Jul 2021 08:00: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/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3584,7 +3520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '102' x-powered-by: - ASP.NET status: @@ -3604,18 +3540,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3623,11 +3559,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:11 GMT + - Tue, 13 Jul 2021 08:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: @@ -3637,7 +3573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '101' x-powered-by: - ASP.NET status: @@ -3657,37 +3593,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1c134494-2c6a-4aca-ac48-f72a91368f93?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Tue, 13 Jul 2021 08:00:19 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '100' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -3702,45 +3646,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d","name":"azurefileshare;3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d","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: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1039' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Tue, 13 Jul 2021 08:00:20 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '99' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3755,49 +3699,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:13 GMT + - Tue, 13 Jul 2021 08:00: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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '98' 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.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 @@ -3807,43 +3749,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d?api-version=2021-01-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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-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;3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d/operationsStatus/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:19:14 GMT + - Tue, 13 Jul 2021 08:00:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d/operationResults/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -3863,45 +3805,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:14 GMT + - Tue, 13 Jul 2021 08:00:24 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '96' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3916,45 +3858,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Tue, 13 Jul 2021 08:00: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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '95' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3969,45 +3911,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:16 GMT + - Tue, 13 Jul 2021 08:00:26 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '94' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4022,24 +3964,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9c683385-1386-4306-9b0c-68db5ce934ca?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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: - - Mon, 21 Jun 2021 12:19:18 GMT + - Tue, 13 Jul 2021 08:00:28 GMT expires: - '-1' pragma: @@ -4055,7 +3997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '93' x-powered-by: - ASP.NET status: @@ -4075,24 +4017,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:19 GMT + - Tue, 13 Jul 2021 08:00:28 GMT expires: - '-1' pragma: @@ -4108,7 +4050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -4125,48 +4067,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-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=2021-01-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:20 GMT + - Tue, 13 Jul 2021 08:00:29 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + 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: @@ -4181,45 +4121,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 08:00: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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4234,45 +4174,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:23 GMT + - Tue, 13 Jul 2021 08:00:31 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4287,45 +4227,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:24 GMT + - Tue, 13 Jul 2021 08:00:32 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4340,45 +4280,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:25 GMT + - Tue, 13 Jul 2021 08:00:33 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4393,45 +4333,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:26 GMT + - Tue, 13 Jul 2021 08:00:34 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4446,45 +4386,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Tue, 13 Jul 2021 08:00:36 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4499,45 +4439,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 08:00: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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4552,45 +4492,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Tue, 13 Jul 2021 08:00:38 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4605,45 +4545,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/37729d07-1e30-4d55-80a2-ee9b28e0defb?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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: - - Mon, 21 Jun 2021 12:19:31 GMT + - Tue, 13 Jul 2021 08:00:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -4658,24 +4590,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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;1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f","name":"azurefileshare;1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f","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: - - Mon, 21 Jun 2021 12:19:33 GMT + - Tue, 13 Jul 2021 08:00:40 GMT expires: - '-1' pragma: @@ -4691,7 +4623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '149' x-powered-by: - ASP.NET status: @@ -4711,24 +4643,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17: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: - - Mon, 21 Jun 2021 12:19:34 GMT + - Tue, 13 Jul 2021 08:00:40 GMT expires: - '-1' pragma: @@ -4744,12 +4676,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '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.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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f/operationsStatus/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:00:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f/operationResults/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -4764,15 +4751,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4781,7 +4768,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:35 GMT + - Tue, 13 Jul 2021 08:00:41 GMT expires: - '-1' pragma: @@ -4797,7 +4784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '149' x-powered-by: - ASP.NET status: @@ -4817,15 +4804,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4834,7 +4821,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:36 GMT + - Tue, 13 Jul 2021 08:00:42 GMT expires: - '-1' pragma: @@ -4850,7 +4837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '148' x-powered-by: - ASP.NET status: @@ -4870,15 +4857,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4887,7 +4874,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:38 GMT + - Tue, 13 Jul 2021 08:00:44 GMT expires: - '-1' pragma: @@ -4903,7 +4890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '147' x-powered-by: - ASP.NET status: @@ -4923,15 +4910,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4940,7 +4927,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:39 GMT + - Tue, 13 Jul 2021 08:00:45 GMT expires: - '-1' pragma: @@ -4956,7 +4943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '146' x-powered-by: - ASP.NET status: @@ -4976,15 +4963,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4993,7 +4980,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:40 GMT + - Tue, 13 Jul 2021 08:00:46 GMT expires: - '-1' pragma: @@ -5009,7 +4996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '145' x-powered-by: - ASP.NET status: @@ -5029,15 +5016,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5046,7 +5033,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:41 GMT + - Tue, 13 Jul 2021 08:00:47 GMT expires: - '-1' pragma: @@ -5062,7 +5049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '144' x-powered-by: - ASP.NET status: @@ -5082,15 +5069,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5099,7 +5086,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Tue, 13 Jul 2021 08:00:48 GMT expires: - '-1' pragma: @@ -5115,7 +5102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '143' x-powered-by: - ASP.NET status: @@ -5135,15 +5122,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5152,7 +5139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:44 GMT + - Tue, 13 Jul 2021 08:00:50 GMT expires: - '-1' pragma: @@ -5168,7 +5155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '142' x-powered-by: - ASP.NET status: @@ -5188,15 +5175,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5205,7 +5192,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Tue, 13 Jul 2021 08:00:51 GMT expires: - '-1' pragma: @@ -5221,7 +5208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '141' x-powered-by: - ASP.NET status: @@ -5241,15 +5228,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5258,7 +5245,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:46 GMT + - Tue, 13 Jul 2021 08:00:52 GMT expires: - '-1' pragma: @@ -5274,7 +5261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '140' x-powered-by: - ASP.NET status: @@ -5294,15 +5281,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5311,7 +5298,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:48 GMT + - Tue, 13 Jul 2021 08:00:53 GMT expires: - '-1' pragma: @@ -5327,7 +5314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '139' x-powered-by: - ASP.NET status: @@ -5347,15 +5334,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5364,7 +5351,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Tue, 13 Jul 2021 08:00:55 GMT expires: - '-1' pragma: @@ -5380,7 +5367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '138' x-powered-by: - ASP.NET status: @@ -5400,15 +5387,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5417,7 +5404,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:50 GMT + - Tue, 13 Jul 2021 08:00:56 GMT expires: - '-1' pragma: @@ -5433,7 +5420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '137' x-powered-by: - ASP.NET status: @@ -5453,15 +5440,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5470,7 +5457,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:51 GMT + - Tue, 13 Jul 2021 08:00:57 GMT expires: - '-1' pragma: @@ -5486,7 +5473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '136' x-powered-by: - ASP.NET status: @@ -5506,15 +5493,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5523,7 +5510,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Tue, 13 Jul 2021 08:00:58 GMT expires: - '-1' pragma: @@ -5539,7 +5526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '135' x-powered-by: - ASP.NET status: @@ -5559,15 +5546,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5576,7 +5563,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Tue, 13 Jul 2021 08:00:59 GMT expires: - '-1' pragma: @@ -5592,7 +5579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '134' x-powered-by: - ASP.NET status: @@ -5612,15 +5599,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5629,7 +5616,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Tue, 13 Jul 2021 08:01:01 GMT expires: - '-1' pragma: @@ -5645,7 +5632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '133' x-powered-by: - ASP.NET status: @@ -5665,15 +5652,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5682,7 +5669,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:56 GMT + - Tue, 13 Jul 2021 08:01:02 GMT expires: - '-1' pragma: @@ -5698,7 +5685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '132' x-powered-by: - ASP.NET status: @@ -5718,15 +5705,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5735,7 +5722,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:57 GMT + - Tue, 13 Jul 2021 08:01:03 GMT expires: - '-1' pragma: @@ -5751,7 +5738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '131' x-powered-by: - ASP.NET status: @@ -5771,15 +5758,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5788,7 +5775,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Tue, 13 Jul 2021 08:01:05 GMT expires: - '-1' pragma: @@ -5804,7 +5791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '130' x-powered-by: - ASP.NET status: @@ -5824,15 +5811,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"InProgress","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5841,7 +5828,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:00 GMT + - Tue, 13 Jul 2021 08:01:07 GMT expires: - '-1' pragma: @@ -5857,7 +5844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '129' x-powered-by: - ASP.NET status: @@ -5877,24 +5864,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c81c6969-63b8-4d8d-a5e1-df9910b88d69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","name":"c81c6969-63b8-4d8d-a5e1-df9910b88d69","status":"Succeeded","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"2021-06-21T12:19:14.3838272Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5ab39066-d57b-4081-96a8-55166573f695"}}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Tue, 13 Jul 2021 08:01:08 GMT expires: - '-1' pragma: @@ -5910,7 +5897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '128' x-powered-by: - ASP.NET status: @@ -5930,33 +5917,30 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5ab39066-d57b-4081-96a8-55166573f695?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5ab39066-d57b-4081-96a8-55166573f695","name":"5ab39066-d57b-4081-96a8-55166573f695","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT47.4299783S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:19:14.3838272Z","endTime":"2021-06-21T12:20:01.8138055Z","activityId":"b5838ebe-d28a-11eb-ab49-c8f750f92764"}}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '946' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:02 GMT + - Tue, 13 Jul 2021 08:01: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: @@ -5966,7 +5950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '127' x-powered-by: - ASP.NET status: @@ -5980,35 +5964,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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.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=2021-04-01&$expand=kerb + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:20:05.1661615Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:20:05.1661615Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '380' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:30 GMT + - Tue, 13 Jul 2021 08:01:10 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: @@ -6018,46 +6003,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '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-azurefileshare Connection: - keep-alive - Content-Length: - - '0' + ParameterSetName: + - -g -v --azure-file-share --storage-account -p User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 - x-ms-date: - - Mon, 21 Jun 2021 12:20:30 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 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: + cache-control: + - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:31 GMT - etag: - - '"0x8D934AEF6815C89"' - last-modified: - - Mon, 21 Jun 2021 12:20:31 GMT + - Tue, 13 Jul 2021 08:01:12 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 + strict-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: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -6072,24 +6076,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%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/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/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":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '880' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:31 GMT + - Tue, 13 Jul 2021 08:01:13 GMT expires: - '-1' pragma: @@ -6105,12 +6109,1901 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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: + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"InProgress","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cc82e686-a4a9-4063-af14-bd0cba70b4ce?api-version=2021-01-01 + response: + body: + string: '{"id":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","name":"cc82e686-a4a9-4063-af14-bd0cba70b4ce","status":"Succeeded","startTime":"2021-07-13T08:00:41.7780138Z","endTime":"2021-07-13T08:00:41.7780138Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0c62d823-4bae-469f-8d1a-ab4f76e838c3"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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: + - '114' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0c62d823-4bae-469f-8d1a-ab4f76e838c3?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0c62d823-4bae-469f-8d1a-ab4f76e838c3","name":"0c62d823-4bae-469f-8d1a-ab4f76e838c3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.4392118S","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-07-13T08:00:41.7780138Z","endTime":"2021-07-13T08:01:25.2172256Z","activityId":"2f9e7ddc-e3b0-11eb-b11c-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '946' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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: + - '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.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007/listKeys?api-version=2021-04-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2021-07-13T08:01:28.7704528Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T08:01:28.7704528Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '380' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01:53 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: + - '11998' + 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.9; Windows 10) AZURECLI/2.26.0 + x-ms-date: + - Tue, 13 Jul 2021 08:01:51 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: + - Tue, 13 Jul 2021 08:01:53 GMT + etag: + - '"0x8D945D47A78C579"' + last-modified: + - Tue, 13 Jul 2021 08:01:53 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%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: + - Tue, 13 Jul 2021 08:01: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 protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '15553' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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-azurefileshare + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01&$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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:01: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:01: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:01: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:01: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:02: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:02: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:02: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:02: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:02: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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/606e370e-d9d4-4a3b-b2a0-62e50c803a75?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Tue, 13 Jul 2021 08:02:06 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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '16330' + content-type: + - application/json + date: + - Tue, 13 Jul 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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + 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 + Accept-Encoding: + - gzip, deflate + CommandName: + - 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bclitest000007?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:02:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6125,45 +8018,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1719' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:31 GMT + - Tue, 13 Jul 2021 08:02:20 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6175,41 +8068,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01&$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/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:32 GMT + - Tue, 13 Jul 2021 08:02: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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -6229,34 +8124,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:33 GMT + - Tue, 13 Jul 2021 08:02:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -6276,34 +8177,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:34 GMT + - Tue, 13 Jul 2021 08:02:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '136' x-powered-by: - ASP.NET status: @@ -6323,34 +8230,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:35 GMT + - Tue, 13 Jul 2021 08:02:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '135' x-powered-by: - ASP.NET status: @@ -6370,34 +8283,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:36 GMT + - Tue, 13 Jul 2021 08:02:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '134' x-powered-by: - ASP.NET status: @@ -6417,34 +8336,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Tue, 13 Jul 2021 08:02: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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '133' x-powered-by: - ASP.NET status: @@ -6464,34 +8389,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:39 GMT + - Tue, 13 Jul 2021 08:02:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '132' x-powered-by: - ASP.NET status: @@ -6511,34 +8442,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:40 GMT + - Tue, 13 Jul 2021 08:02:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '131' x-powered-by: - ASP.NET status: @@ -6558,34 +8495,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:41 GMT + - Tue, 13 Jul 2021 08:02:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '130' x-powered-by: - ASP.NET status: @@ -6605,35 +8548,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/2b4d630b-f410-4b26-bc8b-c537cf12a994?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:43 GMT + - Tue, 13 Jul 2021 08:02:33 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '129' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -6648,48 +8601,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2496' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:43 GMT + - Tue, 13 Jul 2021 08:02:34 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '128' 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 @@ -6699,25 +8651,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bclitest000007?api-version=2021-01-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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6725,11 +8673,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:44 GMT + - Tue, 13 Jul 2021 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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -6738,8 +8686,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: + - '127' x-powered-by: - ASP.NET status: @@ -6759,18 +8707,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6778,11 +8726,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:44 GMT + - Tue, 13 Jul 2021 08:02:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -6792,7 +8740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '126' x-powered-by: - ASP.NET status: @@ -6812,18 +8760,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6831,11 +8779,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:46 GMT + - Tue, 13 Jul 2021 08:02:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -6845,7 +8793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '125' x-powered-by: - ASP.NET status: @@ -6865,18 +8813,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6884,11 +8832,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:47 GMT + - Tue, 13 Jul 2021 08:02:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -6898,7 +8846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '124' x-powered-by: - ASP.NET status: @@ -6918,18 +8866,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6937,11 +8885,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:48 GMT + - Tue, 13 Jul 2021 08:02:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -6951,7 +8899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '123' x-powered-by: - ASP.NET status: @@ -6971,18 +8919,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6990,11 +8938,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:49 GMT + - Tue, 13 Jul 2021 08:02:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7004,7 +8952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '122' x-powered-by: - ASP.NET status: @@ -7024,18 +8972,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7043,11 +8991,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:50 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7057,7 +9005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '121' x-powered-by: - ASP.NET status: @@ -7077,18 +9025,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7096,11 +9044,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:52 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7110,7 +9058,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '120' x-powered-by: - ASP.NET status: @@ -7130,18 +9078,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7149,11 +9097,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:53 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7163,7 +9111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '119' x-powered-by: - ASP.NET status: @@ -7183,18 +9131,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7202,11 +9150,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:54 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7216,7 +9164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '118' x-powered-by: - ASP.NET status: @@ -7236,18 +9184,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7255,11 +9203,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:56 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7269,7 +9217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '117' x-powered-by: - ASP.NET status: @@ -7289,18 +9237,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7308,11 +9256,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:57 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7322,7 +9270,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '116' x-powered-by: - ASP.NET status: @@ -7342,18 +9290,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7361,11 +9309,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:58 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7375,7 +9323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '115' x-powered-by: - ASP.NET status: @@ -7395,18 +9343,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7414,11 +9362,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:59 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7428,7 +9376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '114' x-powered-by: - ASP.NET status: @@ -7448,18 +9396,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7467,11 +9415,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:01 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7481,7 +9429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '113' x-powered-by: - ASP.NET status: @@ -7501,18 +9449,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7520,11 +9468,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Tue, 13 Jul 2021 08:02: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7534,7 +9482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '112' x-powered-by: - ASP.NET status: @@ -7554,18 +9502,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7573,11 +9521,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:03 GMT + - Tue, 13 Jul 2021 08:02: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/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7587,7 +9535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '111' x-powered-by: - ASP.NET status: @@ -7607,18 +9555,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7626,11 +9574,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:04 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7640,7 +9588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '110' x-powered-by: - ASP.NET status: @@ -7660,18 +9608,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7679,11 +9627,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:06 GMT + - Tue, 13 Jul 2021 08:02: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7693,7 +9641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' + - '109' x-powered-by: - ASP.NET status: @@ -7713,18 +9661,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7732,11 +9680,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:07 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7746,7 +9694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' + - '108' x-powered-by: - ASP.NET status: @@ -7766,18 +9714,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7785,11 +9733,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:08 GMT + - Tue, 13 Jul 2021 08:03: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7799,7 +9747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' + - '107' x-powered-by: - ASP.NET status: @@ -7819,18 +9767,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7838,11 +9786,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:09 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7852,7 +9800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' + - '106' x-powered-by: - ASP.NET status: @@ -7872,18 +9820,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7891,11 +9839,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:11 GMT + - Tue, 13 Jul 2021 08:03: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7905,7 +9853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' + - '105' x-powered-by: - ASP.NET status: @@ -7925,18 +9873,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7944,11 +9892,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:12 GMT + - Tue, 13 Jul 2021 08:03: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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -7958,7 +9906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' + - '104' x-powered-by: - ASP.NET status: @@ -7978,18 +9926,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7997,11 +9945,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:13 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8011,7 +9959,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' + - '103' x-powered-by: - ASP.NET status: @@ -8031,18 +9979,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8050,11 +9998,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8064,7 +10012,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' + - '102' x-powered-by: - ASP.NET status: @@ -8084,18 +10032,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8103,11 +10051,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:15 GMT + - Tue, 13 Jul 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/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8117,7 +10065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' + - '101' x-powered-by: - ASP.NET status: @@ -8137,18 +10085,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8156,11 +10104,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8170,7 +10118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' + - '100' x-powered-by: - ASP.NET status: @@ -8190,18 +10138,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8209,11 +10157,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:18 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8223,7 +10171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '99' x-powered-by: - ASP.NET status: @@ -8243,18 +10191,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8262,11 +10210,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:19 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8276,7 +10224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' + - '98' x-powered-by: - ASP.NET status: @@ -8296,18 +10244,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8315,11 +10263,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:20 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8329,7 +10277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '97' x-powered-by: - ASP.NET status: @@ -8349,18 +10297,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8368,11 +10316,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:22 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8382,7 +10330,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '96' x-powered-by: - ASP.NET status: @@ -8402,18 +10350,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8421,11 +10369,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:23 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-01 pragma: - no-cache server: @@ -8435,7 +10383,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' + - '95' x-powered-by: - ASP.NET status: @@ -8455,45 +10403,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/fb786512-d027-4d82-9b74-29881bc9de68?api-version=2021-01-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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:24 GMT + - Tue, 13 Jul 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/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' + - '94' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8508,45 +10456,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:25 GMT + - Tue, 13 Jul 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/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8558,43 +10506,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-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=2021-01-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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:21:27 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -8614,18 +10560,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8633,11 +10579,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:28 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 pragma: - no-cache server: @@ -8647,7 +10593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' + - '149' x-powered-by: - ASP.NET status: @@ -8667,18 +10613,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8686,11 +10632,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:29 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 pragma: - no-cache server: @@ -8700,7 +10646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' + - '148' x-powered-by: - ASP.NET status: @@ -8720,18 +10666,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8739,11 +10685,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:30 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 pragma: - no-cache server: @@ -8753,7 +10699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' + - '147' x-powered-by: - ASP.NET status: @@ -8773,18 +10719,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8792,11 +10738,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:32 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 pragma: - no-cache server: @@ -8806,7 +10752,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' + - '146' x-powered-by: - ASP.NET status: @@ -8826,18 +10772,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2019-05-13-preview + - https://management.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/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8845,11 +10791,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:33 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/operationResults/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 pragma: - no-cache server: @@ -8859,7 +10805,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' + - '145' x-powered-by: - ASP.NET status: @@ -8879,45 +10825,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/df4e09bb-5dcc-4074-90e4-946745b6a577?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b51e74cc-be87-4120-bd05-8aff0c2570a7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;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: cache-control: - no-cache - content-length: - - '790' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:32:24 GMT + - Tue, 13 Jul 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: - - '149' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -8932,15 +10870,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectableItems/azurefileshare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e","name":"azurefileshare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e","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: '{"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;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532","name":"azurefileshare;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532","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: cache-control: - no-cache @@ -8949,7 +10887,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:26 GMT + - Tue, 13 Jul 2021 08:03:24 GMT expires: - '-1' pragma: @@ -8965,7 +10903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -8985,15 +10923,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache @@ -9002,7 +10940,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:27 GMT + - Tue, 13 Jul 2021 08:03:25 GMT expires: - '-1' pragma: @@ -9044,28 +10982,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bclitest000007/protectedItems/azurefileshare%3B43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000007/protectedItems/azurefileshare%3B2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e/operationsStatus/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532/operationsStatus/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:32:29 GMT + - Tue, 13 Jul 2021 08:03: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;clitest000007/protectedItems/azurefileshare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e/operationResults/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532/operationResults/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -9073,7 +11011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -9093,15 +11031,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9110,7 +11048,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:30 GMT + - Tue, 13 Jul 2021 08:03:26 GMT expires: - '-1' pragma: @@ -9146,15 +11084,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9163,7 +11101,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:31 GMT + - Tue, 13 Jul 2021 08:03:27 GMT expires: - '-1' pragma: @@ -9199,15 +11137,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9216,7 +11154,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:32 GMT + - Tue, 13 Jul 2021 08:03:28 GMT expires: - '-1' pragma: @@ -9252,15 +11190,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9269,7 +11207,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:34 GMT + - Tue, 13 Jul 2021 08:03:29 GMT expires: - '-1' pragma: @@ -9305,15 +11243,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9322,7 +11260,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:35 GMT + - Tue, 13 Jul 2021 08:03:31 GMT expires: - '-1' pragma: @@ -9358,15 +11296,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9375,7 +11313,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:36 GMT + - Tue, 13 Jul 2021 08:03:32 GMT expires: - '-1' pragma: @@ -9411,15 +11349,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9428,7 +11366,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:37 GMT + - Tue, 13 Jul 2021 08:03:33 GMT expires: - '-1' pragma: @@ -9464,15 +11402,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9481,7 +11419,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:39 GMT + - Tue, 13 Jul 2021 08:03:34 GMT expires: - '-1' pragma: @@ -9517,15 +11455,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9534,7 +11472,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:41 GMT + - Tue, 13 Jul 2021 08:03:36 GMT expires: - '-1' pragma: @@ -9570,15 +11508,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9587,7 +11525,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:42 GMT + - Tue, 13 Jul 2021 08:03:37 GMT expires: - '-1' pragma: @@ -9623,15 +11561,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9640,7 +11578,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:43 GMT + - Tue, 13 Jul 2021 08:03:38 GMT expires: - '-1' pragma: @@ -9676,15 +11614,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9693,7 +11631,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:44 GMT + - Tue, 13 Jul 2021 08:03:39 GMT expires: - '-1' pragma: @@ -9729,15 +11667,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9746,7 +11684,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:46 GMT + - Tue, 13 Jul 2021 08:03:40 GMT expires: - '-1' pragma: @@ -9782,15 +11720,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9799,7 +11737,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:47 GMT + - Tue, 13 Jul 2021 08:03:43 GMT expires: - '-1' pragma: @@ -9835,15 +11773,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9852,7 +11790,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:48 GMT + - Tue, 13 Jul 2021 08:03:44 GMT expires: - '-1' pragma: @@ -9888,15 +11826,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9905,7 +11843,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:49 GMT + - Tue, 13 Jul 2021 08:03:45 GMT expires: - '-1' pragma: @@ -9941,15 +11879,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9958,7 +11896,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:50 GMT + - Tue, 13 Jul 2021 08:03:46 GMT expires: - '-1' pragma: @@ -9994,15 +11932,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10011,7 +11949,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:53 GMT + - Tue, 13 Jul 2021 08:03:48 GMT expires: - '-1' pragma: @@ -10047,15 +11985,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10064,7 +12002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:54 GMT + - Tue, 13 Jul 2021 08:03:49 GMT expires: - '-1' pragma: @@ -10100,15 +12038,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10117,7 +12055,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:55 GMT + - Tue, 13 Jul 2021 08:03:50 GMT expires: - '-1' pragma: @@ -10153,15 +12091,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10170,7 +12108,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:56 GMT + - Tue, 13 Jul 2021 08:03:51 GMT expires: - '-1' pragma: @@ -10206,15 +12144,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10223,7 +12161,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:58 GMT + - Tue, 13 Jul 2021 08:03:52 GMT expires: - '-1' pragma: @@ -10259,15 +12197,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10276,7 +12214,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:59 GMT + - Tue, 13 Jul 2021 08:03:54 GMT expires: - '-1' pragma: @@ -10312,15 +12250,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10329,7 +12267,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:00 GMT + - Tue, 13 Jul 2021 08:03:55 GMT expires: - '-1' pragma: @@ -10365,15 +12303,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10382,7 +12320,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:01 GMT + - Tue, 13 Jul 2021 08:03:56 GMT expires: - '-1' pragma: @@ -10418,15 +12356,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10435,7 +12373,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:02 GMT + - Tue, 13 Jul 2021 08:03:57 GMT expires: - '-1' pragma: @@ -10471,15 +12409,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10488,7 +12426,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:04 GMT + - Tue, 13 Jul 2021 08:03:58 GMT expires: - '-1' pragma: @@ -10524,15 +12462,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10541,7 +12479,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:06 GMT + - Tue, 13 Jul 2021 08:04:00 GMT expires: - '-1' pragma: @@ -10577,15 +12515,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10594,7 +12532,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:07 GMT + - Tue, 13 Jul 2021 08:04:01 GMT expires: - '-1' pragma: @@ -10630,15 +12568,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10647,7 +12585,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:08 GMT + - Tue, 13 Jul 2021 08:04:02 GMT expires: - '-1' pragma: @@ -10683,15 +12621,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10700,7 +12638,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:09 GMT + - Tue, 13 Jul 2021 08:04:03 GMT expires: - '-1' pragma: @@ -10736,15 +12674,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10753,7 +12691,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:11 GMT + - Tue, 13 Jul 2021 08:04:04 GMT expires: - '-1' pragma: @@ -10789,15 +12727,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"InProgress","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10806,7 +12744,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:13 GMT + - Tue, 13 Jul 2021 08:04:06 GMT expires: - '-1' pragma: @@ -10842,24 +12780,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72f5d9c3-de02-4b09-a3b0-b50824ba30d0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 response: body: - string: '{"id":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","name":"72f5d9c3-de02-4b09-a3b0-b50824ba30d0","status":"Succeeded","startTime":"2021-06-21T12:32:30.0346618Z","endTime":"2021-06-21T12:32:30.0346618Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4eb81886-3a0f-4a94-9f0b-2231f5a39283"}}' + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"InProgress","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:14 GMT + - Tue, 13 Jul 2021 08:04:07 GMT expires: - '-1' pragma: @@ -10895,17 +12833,70 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08ec6b78-e630-411f-a569-f3f15f319735?api-version=2021-01-01 + response: + body: + string: '{"id":"08ec6b78-e630-411f-a569-f3f15f319735","name":"08ec6b78-e630-411f-a569-f3f15f319735","status":"Succeeded","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"2021-07-13T08:03:26.2881558Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"412cf976-aa5f-4fdb-a748-d90b43fe02e6"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:04: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: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4eb81886-3a0f-4a94-9f0b-2231f5a39283?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/412cf976-aa5f-4fdb-a748-d90b43fe02e6?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4eb81886-3a0f-4a94-9f0b-2231f5a39283","name":"4eb81886-3a0f-4a94-9f0b-2231f5a39283","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.1704744S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/412cf976-aa5f-4fdb-a748-d90b43fe02e6","name":"412cf976-aa5f-4fdb-a748-d90b43fe02e6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.1530349S","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-06-21T12:32:30.0346618Z","endTime":"2021-06-21T12:33:13.2051362Z","activityId":"1244136a-d28b-11eb-9f04-c8f750f92764"}}' + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:03:26.2881558Z","endTime":"2021-07-13T08:04:08.4411907Z","activityId":"95044ad8-e3b0-11eb-92cd-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10914,7 +12905,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:14 GMT + - Tue, 13 Jul 2021 08:04:08 GMT expires: - '-1' pragma: @@ -10951,8 +12942,8 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10968,7 +12959,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:15 GMT + - Tue, 13 Jul 2021 08:04:09 GMT expires: - '-1' pragma: @@ -11004,8 +12995,8 @@ interactions: ParameterSetName: - -n -v -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11021,7 +13012,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:16 GMT + - Tue, 13 Jul 2021 08:04:10 GMT expires: - '-1' pragma: @@ -11057,8 +13048,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11074,7 +13065,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:16 GMT + - Tue, 13 Jul 2021 08:04:10 GMT expires: - '-1' pragma: @@ -11110,15 +13101,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d","name":"AzureFileShare;3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}},{"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;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e","name":"AzureFileShare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f","name":"AzureFileShare;1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}},{"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;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532","name":"AzureFileShare;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -11127,7 +13118,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:16 GMT + - Tue, 13 Jul 2021 08:04:11 GMT expires: - '-1' pragma: @@ -11143,7 +13134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -11165,28 +13156,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B3d4bb58375c7ecd6e6091abfeb5a64fe412711f8a3bdf3ccc43ff0fdf0b3592d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B1cd90c9617e58bdf1a1e284c548a6f00420cca7820320deee8e74c104b16244f?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:33:17 GMT + - Tue, 13 Jul 2021 08: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/backupOperationResults/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -11194,7 +13185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' x-powered-by: - ASP.NET status: @@ -11214,15 +13205,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11231,7 +13222,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:17 GMT + - Tue, 13 Jul 2021 08:04:12 GMT expires: - '-1' pragma: @@ -11247,7 +13238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '149' x-powered-by: - ASP.NET status: @@ -11267,15 +13258,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11284,7 +13275,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:19 GMT + - Tue, 13 Jul 2021 08:04:13 GMT expires: - '-1' pragma: @@ -11300,7 +13291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '148' x-powered-by: - ASP.NET status: @@ -11320,15 +13311,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11337,7 +13328,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:20 GMT + - Tue, 13 Jul 2021 08:04:14 GMT expires: - '-1' pragma: @@ -11353,7 +13344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '147' x-powered-by: - ASP.NET status: @@ -11373,15 +13364,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11390,7 +13381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:21 GMT + - Tue, 13 Jul 2021 08:04:15 GMT expires: - '-1' pragma: @@ -11406,7 +13397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '146' x-powered-by: - ASP.NET status: @@ -11426,15 +13417,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11443,7 +13434,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:22 GMT + - Tue, 13 Jul 2021 08:04:17 GMT expires: - '-1' pragma: @@ -11459,7 +13450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '145' x-powered-by: - ASP.NET status: @@ -11479,15 +13470,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11496,7 +13487,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:24 GMT + - Tue, 13 Jul 2021 08:04:18 GMT expires: - '-1' pragma: @@ -11512,7 +13503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '144' x-powered-by: - ASP.NET status: @@ -11532,15 +13523,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11549,7 +13540,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:25 GMT + - Tue, 13 Jul 2021 08:04:19 GMT expires: - '-1' pragma: @@ -11565,7 +13556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '143' x-powered-by: - ASP.NET status: @@ -11585,15 +13576,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11602,7 +13593,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:26 GMT + - Tue, 13 Jul 2021 08:04:20 GMT expires: - '-1' pragma: @@ -11618,7 +13609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '142' x-powered-by: - ASP.NET status: @@ -11638,15 +13629,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11655,7 +13646,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:27 GMT + - Tue, 13 Jul 2021 08:04:22 GMT expires: - '-1' pragma: @@ -11671,7 +13662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '141' x-powered-by: - ASP.NET status: @@ -11691,15 +13682,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"InProgress","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11708,7 +13699,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:29 GMT + - Tue, 13 Jul 2021 08:04:23 GMT expires: - '-1' pragma: @@ -11724,7 +13715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '140' x-powered-by: - ASP.NET status: @@ -11744,24 +13735,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3d268ffd-eea3-4f56-a218-f866f96da21b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"3d268ffd-eea3-4f56-a218-f866f96da21b","name":"3d268ffd-eea3-4f56-a218-f866f96da21b","status":"Succeeded","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"2021-06-21T12:33:18.1204507Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5c5d04fd-306d-4957-a15a-3ca1cd19571f"}}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:30 GMT + - Tue, 13 Jul 2021 08:04:24 GMT expires: - '-1' pragma: @@ -11777,7 +13768,113 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '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: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 + response: + body: + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 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: + - '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: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 + response: + body: + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 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: + - '137' x-powered-by: - ASP.NET status: @@ -11797,31 +13894,82 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5c5d04fd-306d-4957-a15a-3ca1cd19571f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5c5d04fd-306d-4957-a15a-3ca1cd19571f","name":"5c5d04fd-306d-4957-a15a-3ca1cd19571f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT12.4929296S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:33:18.1204507Z","endTime":"2021-06-21T12:33:30.6133803Z","activityId":"da77bece-d28c-11eb-824e-c8f750f92764"}}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '906' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:30 GMT + - Tue, 13 Jul 2021 08:04: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: + - '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: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 + response: + body: + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:04:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -11832,7 +13980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '135' x-powered-by: - ASP.NET status: @@ -11852,24 +14000,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000007/protectedItems/AzureFileShare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e","name":"AzureFileShare;43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e","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","isArchiveEnabled":false}}]}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1352' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:32 GMT + - Tue, 13 Jul 2021 08:04:30 GMT expires: - '-1' pragma: @@ -11885,7 +14033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '134' x-powered-by: - ASP.NET status: @@ -11902,46 +14050,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bclitest000007/protectedItems/AzureFileShare%3B43fe17622e48e3bc679f20a496665a56462d2767e5e3789a79e61111ae6cac8e?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","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/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:33:32 GMT + - Tue, 13 Jul 2021 08:04:31 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-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: @@ -11956,15 +14106,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"InProgress","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11973,7 +14123,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:32 GMT + - Tue, 13 Jul 2021 08:04:33 GMT expires: - '-1' pragma: @@ -11989,7 +14139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '132' x-powered-by: - ASP.NET status: @@ -12009,24 +14159,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e99928ba-ed94-4af2-b25a-5e8b4e274e65?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","name":"e99928ba-ed94-4af2-b25a-5e8b4e274e65","status":"Succeeded","startTime":"2021-07-13T08:04:12.4985424Z","endTime":"2021-07-13T08:04:12.4985424Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9149738d-e383-43c4-b6ae-3cfafdd6e104"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:34 GMT + - Tue, 13 Jul 2021 08:04:35 GMT expires: - '-1' pragma: @@ -12042,7 +14192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '131' x-powered-by: - ASP.NET status: @@ -12062,30 +14212,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9149738d-e383-43c4-b6ae-3cfafdd6e104?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9149738d-e383-43c4-b6ae-3cfafdd6e104","name":"9149738d-e383-43c4-b6ae-3cfafdd6e104","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.647009S","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-07-13T08:04:12.4985424Z","endTime":"2021-07-13T08:04:34.1455514Z","activityId":"e6acb9b0-e3b0-11eb-922b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '905' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:35 GMT + - Tue, 13 Jul 2021 08:04: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: @@ -12095,7 +14247,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -12115,24 +14267,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","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;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532","name":"AzureFileShare;2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:37 GMT + - Tue, 13 Jul 2021 08:04:36 GMT expires: - '-1' pragma: @@ -12148,7 +14300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -12165,48 +14317,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-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%3B2aa1a7ad50b4e0ca43739f428edbc8b5cfa35ea4456dd6ddb6015138e6628532?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","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/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:33:38 GMT + - Tue, 13 Jul 2021 08:04: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/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + 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: @@ -12221,24 +14371,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:39 GMT + - Tue, 13 Jul 2021 08:04:37 GMT expires: - '-1' pragma: @@ -12254,7 +14404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -12274,24 +14424,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:40 GMT + - Tue, 13 Jul 2021 08:04:38 GMT expires: - '-1' pragma: @@ -12307,7 +14457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '148' x-powered-by: - ASP.NET status: @@ -12327,24 +14477,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:42 GMT + - Tue, 13 Jul 2021 08:04:39 GMT expires: - '-1' pragma: @@ -12360,7 +14510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '147' x-powered-by: - ASP.NET status: @@ -12380,24 +14530,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:43 GMT + - Tue, 13 Jul 2021 08:04:40 GMT expires: - '-1' pragma: @@ -12413,7 +14563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '146' x-powered-by: - ASP.NET status: @@ -12433,24 +14583,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"InProgress","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:44 GMT + - Tue, 13 Jul 2021 08:04:41 GMT expires: - '-1' pragma: @@ -12466,7 +14616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '145' x-powered-by: - ASP.NET status: @@ -12486,24 +14636,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a2aef7-3144-4d40-ba0c-3a46ea10c917?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","name":"19a2aef7-3144-4d40-ba0c-3a46ea10c917","status":"Succeeded","startTime":"2021-06-21T12:33:32.9657723Z","endTime":"2021-06-21T12:33:32.9657723Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2a098006-f790-4a73-ad74-fe2e080762d9"}}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:45 GMT + - Tue, 13 Jul 2021 08:04:43 GMT expires: - '-1' pragma: @@ -12519,7 +14669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '144' x-powered-by: - ASP.NET status: @@ -12539,32 +14689,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a098006-f790-4a73-ad74-fe2e080762d9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a098006-f790-4a73-ad74-fe2e080762d9","name":"2a098006-f790-4a73-ad74-fe2e080762d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT11.9323599S","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-06-21T12:33:32.9657723Z","endTime":"2021-06-21T12:33:44.8981322Z","activityId":"e341578d-d28c-11eb-9614-c8f750f92764"}}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '906' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:45 GMT + - Tue, 13 Jul 2021 08:04: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: @@ -12574,7 +14722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -12588,30 +14736,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%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/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/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":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '880' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:46 GMT + - Tue, 13 Jul 2021 08:04:45 GMT expires: - '-1' pragma: @@ -12627,7 +14775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -12641,49 +14789,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '186' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:33:47 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + 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: @@ -12692,51 +14842,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:47 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -12745,51 +14895,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:49 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -12798,51 +14948,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:50 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -12851,51 +15001,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:51 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -12904,51 +15054,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:52 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '136' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -12957,51 +15107,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:54 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '135' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13010,51 +15160,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:55 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '134' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13063,51 +15213,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"InProgress","startTime":"2021-07-13T08:04:36.93916Z","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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '186' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:56 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '133' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13116,51 +15266,51 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d6251e0-4264-4c1a-b1f9-b9e75c88ee27?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","name":"5d6251e0-4264-4c1a-b1f9-b9e75c88ee27","status":"Succeeded","startTime":"2021-07-13T08:04:36.93916Z","endTime":"2021-07-13T08:04:36.93916Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"576964ac-e2b2-4355-bd48-389e62561432"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '300' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:57 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '132' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13169,51 +15319,53 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/576964ac-e2b2-4355-bd48-389e62561432?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/576964ac-e2b2-4355-bd48-389e62561432","name":"576964ac-e2b2-4355-bd48-389e62561432","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.3054868S","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-07-13T08:04:36.93916Z","endTime":"2021-07-13T08:04:58.2446468Z","activityId":"f57f619a-e3b0-11eb-aad1-00155ddc6812"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '904' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:58 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13228,45 +15380,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '880' content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:00 GMT + - Tue, 13 Jul 2021 08:04: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13278,43 +15430,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-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=2021-01-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/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-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/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:34:01 GMT + - Tue, 13 Jul 2021 08: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/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: @@ -13334,18 +15484,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13353,11 +15503,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:02 GMT + - Tue, 13 Jul 2021 08: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13367,7 +15517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '149' x-powered-by: - ASP.NET status: @@ -13387,18 +15537,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13406,11 +15556,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:03 GMT + - Tue, 13 Jul 2021 08: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13420,7 +15570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '148' x-powered-by: - ASP.NET status: @@ -13440,18 +15590,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13459,11 +15609,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:05 GMT + - Tue, 13 Jul 2021 08:05: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13473,7 +15623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '147' x-powered-by: - ASP.NET status: @@ -13493,18 +15643,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13512,11 +15662,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:06 GMT + - Tue, 13 Jul 2021 08: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13526,7 +15676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '146' x-powered-by: - ASP.NET status: @@ -13546,18 +15696,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13565,11 +15715,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:07 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13579,7 +15729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '145' x-powered-by: - ASP.NET status: @@ -13599,18 +15749,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13618,11 +15768,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:08 GMT + - Tue, 13 Jul 2021 08:05: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/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13632,7 +15782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '144' x-powered-by: - ASP.NET status: @@ -13652,18 +15802,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27487245-383d-494f-944b-c94925f55c4d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13671,11 +15821,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:10 GMT + - Tue, 13 Jul 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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13685,7 +15835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '143' x-powered-by: - ASP.NET status: @@ -13705,37 +15855,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27487245-383d-494f-944b-c94925f55c4d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-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/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:34:11 GMT + - Tue, 13 Jul 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-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '142' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -13750,45 +15908,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%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/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/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"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:12 GMT + - Tue, 13 Jul 2021 08:05: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/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13800,41 +15958,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bclitest000007?api-version=2021-01-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/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:34:13 GMT + - Tue, 13 Jul 2021 08: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/backupOperationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -13854,18 +16014,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13873,11 +16033,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:13 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13887,7 +16047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -13907,18 +16067,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13926,11 +16086,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:14 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13940,7 +16100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '138' x-powered-by: - ASP.NET status: @@ -13960,18 +16120,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13979,11 +16139,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:16 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -13993,7 +16153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '137' x-powered-by: - ASP.NET status: @@ -14013,18 +16173,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14032,11 +16192,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:17 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -14046,7 +16206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '136' x-powered-by: - ASP.NET status: @@ -14066,18 +16226,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14085,11 +16245,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:18 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -14099,7 +16259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '135' x-powered-by: - ASP.NET status: @@ -14119,18 +16279,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14138,11 +16298,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:19 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -14152,7 +16312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '134' x-powered-by: - ASP.NET status: @@ -14172,18 +16332,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14191,11 +16351,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:20 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -14205,7 +16365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '133' x-powered-by: - ASP.NET status: @@ -14225,18 +16385,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14244,11 +16404,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:22 GMT + - Tue, 13 Jul 2021 08: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-01 pragma: - no-cache server: @@ -14258,7 +16418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '132' x-powered-by: - ASP.NET status: @@ -14278,45 +16438,37 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1a14484a-78b1-46c5-93e9-8ae0fcd5f924?api-version=2021-01-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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:34:23 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -14331,45 +16483,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000007%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;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"}}]}' headers: - azure-asyncoperation: - - https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '880' content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:24 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -14381,43 +16533,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-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?api-version=2021-01-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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:34:25 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: @@ -14437,18 +16587,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14456,11 +16606,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:27 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14470,7 +16620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '143' x-powered-by: - ASP.NET status: @@ -14490,18 +16640,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14509,11 +16659,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:28 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14523,7 +16673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '142' x-powered-by: - ASP.NET status: @@ -14543,18 +16693,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14562,11 +16712,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:29 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14576,7 +16726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '141' x-powered-by: - ASP.NET status: @@ -14596,18 +16746,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14615,11 +16765,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:30 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14629,7 +16779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '140' x-powered-by: - ASP.NET status: @@ -14649,18 +16799,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14668,11 +16818,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:31 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14682,7 +16832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '139' x-powered-by: - ASP.NET status: @@ -14702,18 +16852,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14721,11 +16871,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:33 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14735,7 +16885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '138' x-powered-by: - ASP.NET status: @@ -14755,18 +16905,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14774,11 +16924,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:34 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14788,7 +16938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '137' x-powered-by: - ASP.NET status: @@ -14808,18 +16958,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14827,11 +16977,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:35 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14841,7 +16991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '136' x-powered-by: - ASP.NET status: @@ -14861,18 +17011,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14880,11 +17030,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:36 GMT + - Tue, 13 Jul 2021 08:05: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;clitest000007/operationResults/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14894,7 +17044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '135' x-powered-by: - ASP.NET status: @@ -14914,18 +17064,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14933,11 +17083,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:38 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -14947,7 +17097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '134' x-powered-by: - ASP.NET status: @@ -14967,18 +17117,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14986,11 +17136,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:39 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15000,7 +17150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '133' x-powered-by: - ASP.NET status: @@ -15020,18 +17170,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15039,11 +17189,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:40 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15053,7 +17203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '132' x-powered-by: - ASP.NET status: @@ -15073,18 +17223,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15092,11 +17242,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:41 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15106,7 +17256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '131' x-powered-by: - ASP.NET status: @@ -15126,18 +17276,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15145,11 +17295,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:43 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15159,7 +17309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '130' x-powered-by: - ASP.NET status: @@ -15179,18 +17329,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15198,11 +17348,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:44 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15212,7 +17362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '129' x-powered-by: - ASP.NET status: @@ -15232,18 +17382,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15251,11 +17401,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:45 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15265,7 +17415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '128' x-powered-by: - ASP.NET status: @@ -15285,18 +17435,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15304,11 +17454,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:46 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15318,7 +17468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '127' x-powered-by: - ASP.NET status: @@ -15338,18 +17488,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2019-05-13-preview + - https://management.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/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15357,11 +17507,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:48 GMT + - Tue, 13 Jul 2021 08:05: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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 pragma: - no-cache server: @@ -15371,7 +17521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '126' x-powered-by: - ASP.NET status: @@ -15391,12 +17541,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.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/05ed7a83-d92a-47d8-ba99-c7c3478f9edd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/cba08016-efd3-4bfb-979e-0be891d9fb99?api-version=2021-01-01 response: body: string: '' @@ -15406,7 +17556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:34:49 GMT + - Tue, 13 Jul 2021 08:05:46 GMT expires: - '-1' pragma: @@ -15416,7 +17566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '125' x-powered-by: - ASP.NET status: @@ -15436,8 +17586,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -15453,7 +17603,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:30 GMT + - Tue, 13 Jul 2021 08:07:26 GMT expires: - '-1' pragma: @@ -15469,7 +17619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -15479,7 +17629,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -15491,9 +17641,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -15503,7 +17653,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:36:35 GMT + - Tue, 13 Jul 2021 08:07:29 GMT expires: - '-1' pragma: @@ -15513,7 +17663,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 be8f017944c..90f83be5fbe 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A26.5363725Z''\"","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-07-13T07%3A58%3A32.7984067Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:27 GMT + - Tue, 13 Jul 2021 07:58:33 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:29.6633697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:29.6633697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T07:58:35.9537245Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T07:58:35.9537245Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 07:59:02 GMT expires: - '-1' pragma: @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 07:59:00 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 07:59:02 GMT etag: - - '"0x8D934AE9753DB6F"' + - '"0x8D945D414C1816F"' last-modified: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 07:59:03 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -149,12 +149,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:29.6633697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:29.6633697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T07:58:35.9537245Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T07:58:35.9537245Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -163,7 +163,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -179,7 +179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -191,9 +191,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 07:59:01 GMT x-ms-share-quota: - '1' x-ms-version: @@ -207,11 +207,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 07:59:03 GMT etag: - - '"0x8D934AE97C57204"' + - '"0x8D945D4154C57F8"' last-modified: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 07:59:04 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -233,15 +233,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -250,7 +250,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 07:59:04 GMT expires: - '-1' pragma: @@ -266,7 +266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -275,9 +275,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -295,15 +295,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -312,7 +312,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 07:59:05 GMT expires: - '-1' pragma: @@ -328,7 +328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -348,15 +348,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -365,7 +365,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 07:59:05 GMT expires: - '-1' pragma: @@ -390,9 +390,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -410,15 +410,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -427,7 +427,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 07:59:07 GMT expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -463,8 +463,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -480,7 +480,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 07:59:08 GMT expires: - '-1' pragma: @@ -516,24 +516,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","name":"StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestoypr5dfjibpwcp6if","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xbrqcf6l6/providers/Microsoft.Storage/storageAccounts/clitestoypr5dfjibpwcp6if"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","name":"StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttduidxluc6kcgpivk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6spcspvqni/providers/Microsoft.Storage/storageAccounts/clitesttduidxluc6kcgpivk"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","name":"StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bzko354e2edfooet","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj3lk3rkhce/providers/Microsoft.Storage/storageAccounts/clitest6bzko354e2edfooet"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestjdw5rejlhkniqgppt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitestjdw5rejlhkniqgppt"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesty7can45cle24hlrp4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitesty7can45cle24hlrp4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","name":"StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestfyirbb5gvytcafkvo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgocb3jbfyjl/providers/Microsoft.Storage/storageAccounts/clitestfyirbb5gvytcafkvo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '777' + - '19485' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Tue, 13 Jul 2021 07:59:08 GMT expires: - '-1' pragma: @@ -571,8 +571,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -582,17 +582,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2019-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/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Tue, 13 Jul 2021 07:59: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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -620,12 +620,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -635,11 +635,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Tue, 13 Jul 2021 07:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -647,7 +647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -667,12 +667,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -682,11 +682,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Tue, 13 Jul 2021 07:59: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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -694,7 +694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -714,12 +714,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -729,11 +729,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Tue, 13 Jul 2021 07:59: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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -741,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '147' x-powered-by: - ASP.NET status: @@ -761,12 +761,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -776,11 +776,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:59 GMT + - Tue, 13 Jul 2021 07:59: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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -788,7 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '146' x-powered-by: - ASP.NET status: @@ -808,12 +808,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -823,11 +823,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:01 GMT + - Tue, 13 Jul 2021 07:59:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -835,7 +835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '145' x-powered-by: - ASP.NET status: @@ -855,12 +855,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -870,11 +870,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:02 GMT + - Tue, 13 Jul 2021 07:59:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -882,7 +882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '144' x-powered-by: - ASP.NET status: @@ -902,12 +902,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -917,11 +917,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:03 GMT + - Tue, 13 Jul 2021 07:59:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -929,7 +929,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '143' x-powered-by: - ASP.NET status: @@ -949,12 +949,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -964,11 +964,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:04 GMT + - Tue, 13 Jul 2021 07:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -976,7 +976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '142' x-powered-by: - ASP.NET status: @@ -996,12 +996,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -1011,11 +1011,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Tue, 13 Jul 2021 07:59: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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '141' x-powered-by: - ASP.NET status: @@ -1043,12 +1043,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/99c6c803-16d3-44c3-a2cf-5086a3d8b262?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/8b5f5b01-c55c-43ed-bb7b-be7289e43b88?api-version=2021-01-01 response: body: string: '' @@ -1056,7 +1056,7 @@ interactions: cache-control: - no-cache date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Tue, 13 Jul 2021 07:59:21 GMT expires: - '-1' pragma: @@ -1066,7 +1066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '140' x-powered-by: - ASP.NET status: @@ -1086,24 +1086,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","name":"StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestm6eopwdgj5icqi7to","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgftuxhbxc3o/providers/Microsoft.Storage/storageAccounts/clitestm6eopwdgj5icqi7to"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '4827' + - '16330' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:07 GMT + - Tue, 13 Jul 2021 07:59:21 GMT expires: - '-1' pragma: @@ -1144,8 +1144,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -1155,7 +1155,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1163,11 +1163,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Tue, 13 Jul 2021 07:59:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1177,7 +1177,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1197,18 +1197,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1216,11 +1216,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Tue, 13 Jul 2021 07:59:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1250,18 +1250,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1269,11 +1269,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:09 GMT + - Tue, 13 Jul 2021 07:59:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1303,18 +1303,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1322,11 +1322,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:11 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1356,18 +1356,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1375,11 +1375,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:12 GMT + - Tue, 13 Jul 2021 07:59:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1409,18 +1409,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1428,11 +1428,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:13 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1462,18 +1462,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1481,11 +1481,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:14 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1515,18 +1515,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1534,11 +1534,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:16 GMT + - Tue, 13 Jul 2021 07:59:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1568,18 +1568,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1587,11 +1587,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:17 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1621,18 +1621,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1640,11 +1640,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:18 GMT + - Tue, 13 Jul 2021 07:59:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1674,18 +1674,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1693,11 +1693,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:19 GMT + - Tue, 13 Jul 2021 07:59:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1727,18 +1727,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1746,11 +1746,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:20 GMT + - Tue, 13 Jul 2021 07:59:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1780,18 +1780,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1799,11 +1799,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:22 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1833,18 +1833,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1852,11 +1852,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:23 GMT + - Tue, 13 Jul 2021 07:59:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1886,18 +1886,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1905,11 +1905,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:24 GMT + - Tue, 13 Jul 2021 07:59:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1939,18 +1939,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1958,11 +1958,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Tue, 13 Jul 2021 07:59:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -1992,18 +1992,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2011,11 +2011,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:27 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2045,18 +2045,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2064,11 +2064,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:28 GMT + - Tue, 13 Jul 2021 07:59:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2098,18 +2098,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2117,11 +2117,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:29 GMT + - Tue, 13 Jul 2021 07:59:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2151,18 +2151,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2170,11 +2170,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Tue, 13 Jul 2021 07:59:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2204,18 +2204,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2223,11 +2223,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:32 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2257,18 +2257,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2276,11 +2276,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:33 GMT + - Tue, 13 Jul 2021 07:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2310,18 +2310,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2329,11 +2329,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:34 GMT + - Tue, 13 Jul 2021 07:59:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2363,18 +2363,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2382,11 +2382,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:35 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2416,18 +2416,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2435,11 +2435,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:36 GMT + - Tue, 13 Jul 2021 07:59:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2469,18 +2469,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2488,11 +2488,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:38 GMT + - Tue, 13 Jul 2021 07:59:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2522,18 +2522,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2541,11 +2541,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Tue, 13 Jul 2021 07:59:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2575,18 +2575,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2594,11 +2594,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:40 GMT + - Tue, 13 Jul 2021 07:59: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2628,18 +2628,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2647,11 +2647,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:41 GMT + - Tue, 13 Jul 2021 07:59:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2681,18 +2681,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2700,11 +2700,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:42 GMT + - Tue, 13 Jul 2021 07:59:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2734,18 +2734,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2753,11 +2753,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:44 GMT + - Tue, 13 Jul 2021 07:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2787,18 +2787,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2806,11 +2806,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:45 GMT + - Tue, 13 Jul 2021 07:59:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2840,18 +2840,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2859,11 +2859,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:46 GMT + - Tue, 13 Jul 2021 08:00: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2893,18 +2893,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2912,11 +2912,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Tue, 13 Jul 2021 08:00:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2946,18 +2946,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2965,11 +2965,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:49 GMT + - Tue, 13 Jul 2021 08:00:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -2999,18 +2999,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3018,11 +3018,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:50 GMT + - Tue, 13 Jul 2021 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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3052,18 +3052,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3071,11 +3071,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:51 GMT + - Tue, 13 Jul 2021 08:00:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3105,18 +3105,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3124,11 +3124,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:52 GMT + - Tue, 13 Jul 2021 08:00:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3158,18 +3158,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3177,11 +3177,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Tue, 13 Jul 2021 08:00:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3211,18 +3211,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3230,11 +3230,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:55 GMT + - Tue, 13 Jul 2021 08:00:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3264,18 +3264,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3283,11 +3283,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:56 GMT + - Tue, 13 Jul 2021 08:00:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3317,18 +3317,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3336,11 +3336,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:57 GMT + - Tue, 13 Jul 2021 08:00:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3370,18 +3370,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3389,11 +3389,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:59 GMT + - Tue, 13 Jul 2021 08:00: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3423,18 +3423,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3442,11 +3442,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Tue, 13 Jul 2021 08:00:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3476,18 +3476,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3495,11 +3495,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:02 GMT + - Tue, 13 Jul 2021 08:00:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3529,18 +3529,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3548,11 +3548,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:03 GMT + - Tue, 13 Jul 2021 08:00:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3582,18 +3582,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3601,11 +3601,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:04 GMT + - Tue, 13 Jul 2021 08:00: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3635,18 +3635,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3654,11 +3654,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:05 GMT + - Tue, 13 Jul 2021 08:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3688,18 +3688,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3707,11 +3707,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 08:00:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3741,18 +3741,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3760,11 +3760,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Tue, 13 Jul 2021 08:00: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/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3794,18 +3794,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3813,11 +3813,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:09 GMT + - Tue, 13 Jul 2021 08:00:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3847,18 +3847,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3866,11 +3866,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:10 GMT + - Tue, 13 Jul 2021 08:00:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3900,18 +3900,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3919,11 +3919,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:11 GMT + - Tue, 13 Jul 2021 08:00:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -3953,18 +3953,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3972,11 +3972,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:13 GMT + - Tue, 13 Jul 2021 08:00:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -4006,18 +4006,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4025,11 +4025,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:14 GMT + - Tue, 13 Jul 2021 08:00:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -4059,18 +4059,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4078,11 +4078,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Tue, 13 Jul 2021 08:00:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -4112,18 +4112,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4131,11 +4131,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:16 GMT + - Tue, 13 Jul 2021 08:00:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -4165,18 +4165,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4184,11 +4184,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:18 GMT + - Tue, 13 Jul 2021 08:00:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -4218,18 +4218,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4237,11 +4237,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:19 GMT + - Tue, 13 Jul 2021 08:00:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 pragma: - no-cache server: @@ -4271,65 +4271,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02cd09d6-3775-4dce-8532-cf566e26023a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/02c9367c-5d3d-4f8d-8f0c-9a514f98178f?api-version=2021-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' @@ -4341,7 +4288,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 08:00:33 GMT expires: - '-1' pragma: @@ -4357,7 +4304,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '91' x-powered-by: - ASP.NET status: @@ -4377,8 +4324,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -4394,7 +4341,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 08:00:35 GMT expires: - '-1' pragma: @@ -4410,7 +4357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4432,8 +4379,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -4443,17 +4390,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 08:00:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4481,18 +4428,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4500,11 +4447,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:23 GMT + - Tue, 13 Jul 2021 08:00: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/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 pragma: - no-cache server: @@ -4534,18 +4481,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4553,11 +4500,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:24 GMT + - Tue, 13 Jul 2021 08:00: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/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 pragma: - no-cache server: @@ -4587,18 +4534,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4606,11 +4553,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:25 GMT + - Tue, 13 Jul 2021 08:00:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 pragma: - no-cache server: @@ -4640,18 +4587,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4659,11 +4606,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:26 GMT + - Tue, 13 Jul 2021 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/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 pragma: - no-cache server: @@ -4693,18 +4640,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4712,11 +4659,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Tue, 13 Jul 2021 08:00:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 pragma: - no-cache server: @@ -4746,12 +4693,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/eb152882-59ca-4668-ac20-645816cbcf74?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0112f9a7-7ca5-4f8a-a716-fea8d963e2d4?api-version=2021-01-01 response: body: string: '' @@ -4761,7 +4708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 08:00:42 GMT expires: - '-1' pragma: @@ -4791,15 +4738,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"azurefileshare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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"}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"azurefileshare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"azurefileshare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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"}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"azurefileshare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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 @@ -4808,7 +4755,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 08:00:42 GMT expires: - '-1' pragma: @@ -4844,15 +4791,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -4861,7 +4808,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 08:00:43 GMT expires: - '-1' pragma: @@ -4903,28 +4850,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bc5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bc01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263/operationsStatus/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d/operationsStatus/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Tue, 13 Jul 2021 08:00:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263/operationResults/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d/operationResults/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4952,15 +4899,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4969,7 +4916,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Tue, 13 Jul 2021 08:00:44 GMT expires: - '-1' pragma: @@ -4985,7 +4932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '149' x-powered-by: - ASP.NET status: @@ -5005,15 +4952,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5022,7 +4969,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:31 GMT + - Tue, 13 Jul 2021 08:00:45 GMT expires: - '-1' pragma: @@ -5038,7 +4985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '148' x-powered-by: - ASP.NET status: @@ -5058,15 +5005,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5075,7 +5022,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:33 GMT + - Tue, 13 Jul 2021 08:00:47 GMT expires: - '-1' pragma: @@ -5091,7 +5038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '147' x-powered-by: - ASP.NET status: @@ -5111,15 +5058,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5128,7 +5075,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:34 GMT + - Tue, 13 Jul 2021 08:00:48 GMT expires: - '-1' pragma: @@ -5144,7 +5091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '146' x-powered-by: - ASP.NET status: @@ -5164,15 +5111,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5181,7 +5128,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:35 GMT + - Tue, 13 Jul 2021 08:00:49 GMT expires: - '-1' pragma: @@ -5197,7 +5144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '145' x-powered-by: - ASP.NET status: @@ -5217,15 +5164,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5234,7 +5181,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:36 GMT + - Tue, 13 Jul 2021 08:00:50 GMT expires: - '-1' pragma: @@ -5250,7 +5197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '144' x-powered-by: - ASP.NET status: @@ -5270,15 +5217,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5287,7 +5234,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:37 GMT + - Tue, 13 Jul 2021 08:00:52 GMT expires: - '-1' pragma: @@ -5303,7 +5250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '143' x-powered-by: - ASP.NET status: @@ -5323,15 +5270,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5340,7 +5287,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:39 GMT + - Tue, 13 Jul 2021 08:00:53 GMT expires: - '-1' pragma: @@ -5356,7 +5303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '142' x-powered-by: - ASP.NET status: @@ -5376,15 +5323,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5393,7 +5340,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:40 GMT + - Tue, 13 Jul 2021 08:00:54 GMT expires: - '-1' pragma: @@ -5409,7 +5356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '141' x-powered-by: - ASP.NET status: @@ -5429,15 +5376,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5446,7 +5393,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:41 GMT + - Tue, 13 Jul 2021 08:00:55 GMT expires: - '-1' pragma: @@ -5462,7 +5409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '140' x-powered-by: - ASP.NET status: @@ -5482,15 +5429,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5499,7 +5446,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:42 GMT + - Tue, 13 Jul 2021 08:00:56 GMT expires: - '-1' pragma: @@ -5515,7 +5462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '139' x-powered-by: - ASP.NET status: @@ -5535,15 +5482,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5552,7 +5499,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Tue, 13 Jul 2021 08:00:58 GMT expires: - '-1' pragma: @@ -5568,7 +5515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '138' x-powered-by: - ASP.NET status: @@ -5588,15 +5535,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5605,7 +5552,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Tue, 13 Jul 2021 08:00:59 GMT expires: - '-1' pragma: @@ -5621,7 +5568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '137' x-powered-by: - ASP.NET status: @@ -5641,15 +5588,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5658,7 +5605,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:46 GMT + - Tue, 13 Jul 2021 08:01:00 GMT expires: - '-1' pragma: @@ -5674,7 +5621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '136' x-powered-by: - ASP.NET status: @@ -5694,15 +5641,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5711,7 +5658,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:47 GMT + - Tue, 13 Jul 2021 08:01:01 GMT expires: - '-1' pragma: @@ -5727,7 +5674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '135' x-powered-by: - ASP.NET status: @@ -5747,15 +5694,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5764,7 +5711,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:48 GMT + - Tue, 13 Jul 2021 08:01:03 GMT expires: - '-1' pragma: @@ -5780,7 +5727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '134' x-powered-by: - ASP.NET status: @@ -5800,15 +5747,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5817,7 +5764,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Tue, 13 Jul 2021 08:01:04 GMT expires: - '-1' pragma: @@ -5833,7 +5780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '133' x-powered-by: - ASP.NET status: @@ -5853,15 +5800,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5870,7 +5817,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Tue, 13 Jul 2021 08:01:05 GMT expires: - '-1' pragma: @@ -5886,7 +5833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '132' x-powered-by: - ASP.NET status: @@ -5906,15 +5853,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5923,7 +5870,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:53 GMT + - Tue, 13 Jul 2021 08:01:06 GMT expires: - '-1' pragma: @@ -5939,7 +5886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '131' x-powered-by: - ASP.NET status: @@ -5959,15 +5906,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5976,7 +5923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Tue, 13 Jul 2021 08:01:08 GMT expires: - '-1' pragma: @@ -5992,7 +5939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '130' x-powered-by: - ASP.NET status: @@ -6012,15 +5959,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6029,7 +5976,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Tue, 13 Jul 2021 08:01:09 GMT expires: - '-1' pragma: @@ -6045,7 +5992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '129' x-powered-by: - ASP.NET status: @@ -6065,15 +6012,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6082,7 +6029,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:57 GMT + - Tue, 13 Jul 2021 08:01:10 GMT expires: - '-1' pragma: @@ -6098,7 +6045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '128' x-powered-by: - ASP.NET status: @@ -6118,15 +6065,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6135,7 +6082,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:58 GMT + - Tue, 13 Jul 2021 08:01:11 GMT expires: - '-1' pragma: @@ -6151,7 +6098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '127' x-powered-by: - ASP.NET status: @@ -6171,15 +6118,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6188,7 +6135,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Tue, 13 Jul 2021 08:01:13 GMT expires: - '-1' pragma: @@ -6204,7 +6151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '126' x-powered-by: - ASP.NET status: @@ -6224,15 +6171,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6241,7 +6188,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:00 GMT + - Tue, 13 Jul 2021 08:01:14 GMT expires: - '-1' pragma: @@ -6257,7 +6204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '125' x-powered-by: - ASP.NET status: @@ -6277,15 +6224,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6294,7 +6241,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Tue, 13 Jul 2021 08:01:15 GMT expires: - '-1' pragma: @@ -6310,7 +6257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '124' x-powered-by: - ASP.NET status: @@ -6330,15 +6277,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6347,7 +6294,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:03 GMT + - Tue, 13 Jul 2021 08:01:16 GMT expires: - '-1' pragma: @@ -6363,7 +6310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '123' x-powered-by: - ASP.NET status: @@ -6383,15 +6330,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6400,7 +6347,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:04 GMT + - Tue, 13 Jul 2021 08:01:18 GMT expires: - '-1' pragma: @@ -6416,7 +6363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '122' x-powered-by: - ASP.NET status: @@ -6436,15 +6383,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6453,7 +6400,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:05 GMT + - Tue, 13 Jul 2021 08:01:19 GMT expires: - '-1' pragma: @@ -6469,7 +6416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '121' x-powered-by: - ASP.NET status: @@ -6489,15 +6436,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6506,7 +6453,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Tue, 13 Jul 2021 08:01:20 GMT expires: - '-1' pragma: @@ -6522,7 +6469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '120' x-powered-by: - ASP.NET status: @@ -6542,15 +6489,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6559,7 +6506,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Tue, 13 Jul 2021 08:01:21 GMT expires: - '-1' pragma: @@ -6575,7 +6522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '119' x-powered-by: - ASP.NET status: @@ -6595,15 +6542,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6612,7 +6559,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:09 GMT + - Tue, 13 Jul 2021 08:01:23 GMT expires: - '-1' pragma: @@ -6628,7 +6575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '118' x-powered-by: - ASP.NET status: @@ -6648,15 +6595,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6665,7 +6612,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:10 GMT + - Tue, 13 Jul 2021 08:01:24 GMT expires: - '-1' pragma: @@ -6681,7 +6628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '117' x-powered-by: - ASP.NET status: @@ -6701,15 +6648,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"InProgress","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6718,7 +6665,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:11 GMT + - Tue, 13 Jul 2021 08:01:25 GMT expires: - '-1' pragma: @@ -6734,7 +6681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '116' x-powered-by: - ASP.NET status: @@ -6754,24 +6701,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/83c77068-2158-449a-b1bd-d5a16f702c22?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"83c77068-2158-449a-b1bd-d5a16f702c22","name":"83c77068-2158-449a-b1bd-d5a16f702c22","status":"Succeeded","startTime":"2021-07-13T08:00:44.3094263Z","endTime":"2021-07-13T08:00:44.3094263Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"335d9823-fdf0-4890-88c2-a94000049e06"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Tue, 13 Jul 2021 08:01:26 GMT expires: - '-1' pragma: @@ -6787,7 +6734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '115' x-powered-by: - ASP.NET status: @@ -6807,30 +6754,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/335d9823-fdf0-4890-88c2-a94000049e06?api-version=2021-01-01 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"InProgress","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/335d9823-fdf0-4890-88c2-a94000049e06","name":"335d9823-fdf0-4890-88c2-a94000049e06","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.4167285S","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-07-13T08:00:44.3094263Z","endTime":"2021-07-13T08:01:26.7261548Z","activityId":"3209ea0a-e3b0-11eb-917a-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Tue, 13 Jul 2021 08:01: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: @@ -6840,7 +6790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '149' x-powered-by: - ASP.NET status: @@ -6860,24 +6810,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/689e1095-9f49-4934-bd18-04faeb7642c2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"689e1095-9f49-4934-bd18-04faeb7642c2","name":"689e1095-9f49-4934-bd18-04faeb7642c2","status":"Succeeded","startTime":"2021-06-21T12:19:30.9089175Z","endTime":"2021-06-21T12:19:30.9089175Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e4babff8-5c91-4201-ae3a-223c3a99edc5"}}' + 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: - - '304' + - '880' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Tue, 13 Jul 2021 08:01:28 GMT expires: - '-1' pragma: @@ -6893,7 +6843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '149' x-powered-by: - ASP.NET status: @@ -6913,33 +6863,30 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4babff8-5c91-4201-ae3a-223c3a99edc5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4babff8-5c91-4201-ae3a-223c3a99edc5","name":"e4babff8-5c91-4201-ae3a-223c3a99edc5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.3373812S","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-06-21T12:19:30.9089175Z","endTime":"2021-06-21T12:20:14.2462987Z","activityId":"b4e51795-d28a-11eb-b8d3-c8f750f92764"}}' + 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;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"azurefileshare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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: - - '946' + - '1039' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Tue, 13 Jul 2021 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: @@ -6949,7 +6896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -6969,24 +6916,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%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/backupPolicies/clitest-item000006?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/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":"/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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '880' + - '740' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:16 GMT + - Tue, 13 Jul 2021 08:01:28 GMT expires: - '-1' pragma: @@ -7002,14 +6949,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.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 @@ -7019,48 +6968,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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%3B9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"azurefileshare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84/operationsStatus/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1039' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:20:16 GMT + - Tue, 13 Jul 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/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84/operationResults/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + 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: @@ -7075,24 +7024,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '740' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:17 GMT + - Tue, 13 Jul 2021 08:01:29 GMT expires: - '-1' pragma: @@ -7115,9 +7064,7 @@ interactions: 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-item000006", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -7127,48 +7074,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","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;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1/operationsStatus/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:20:17 GMT + - Tue, 13 Jul 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/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1/operationResults/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + 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: @@ -7183,15 +7130,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7200,7 +7147,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:18 GMT + - Tue, 13 Jul 2021 08:01:33 GMT expires: - '-1' pragma: @@ -7216,7 +7163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '147' x-powered-by: - ASP.NET status: @@ -7236,15 +7183,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7253,7 +7200,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:19 GMT + - Tue, 13 Jul 2021 08:01:34 GMT expires: - '-1' pragma: @@ -7269,7 +7216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '146' x-powered-by: - ASP.NET status: @@ -7289,15 +7236,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7306,7 +7253,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:20 GMT + - Tue, 13 Jul 2021 08:01:35 GMT expires: - '-1' pragma: @@ -7322,7 +7269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '145' x-powered-by: - ASP.NET status: @@ -7342,15 +7289,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7359,7 +7306,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:22 GMT + - Tue, 13 Jul 2021 08:01:36 GMT expires: - '-1' pragma: @@ -7375,7 +7322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '144' x-powered-by: - ASP.NET status: @@ -7395,15 +7342,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7412,7 +7359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:23 GMT + - Tue, 13 Jul 2021 08:01:38 GMT expires: - '-1' pragma: @@ -7428,7 +7375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '143' x-powered-by: - ASP.NET status: @@ -7448,15 +7395,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7465,7 +7412,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:24 GMT + - Tue, 13 Jul 2021 08:01:39 GMT expires: - '-1' pragma: @@ -7481,7 +7428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '142' x-powered-by: - ASP.NET status: @@ -7501,15 +7448,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7518,7 +7465,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:26 GMT + - Tue, 13 Jul 2021 08:01:40 GMT expires: - '-1' pragma: @@ -7534,7 +7481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '141' x-powered-by: - ASP.NET status: @@ -7554,15 +7501,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7571,7 +7518,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:27 GMT + - Tue, 13 Jul 2021 08:01:42 GMT expires: - '-1' pragma: @@ -7587,7 +7534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '140' x-powered-by: - ASP.NET status: @@ -7607,15 +7554,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7624,7 +7571,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:29 GMT + - Tue, 13 Jul 2021 08:01:43 GMT expires: - '-1' pragma: @@ -7640,7 +7587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '139' x-powered-by: - ASP.NET status: @@ -7660,15 +7607,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7677,7 +7624,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:30 GMT + - Tue, 13 Jul 2021 08:01:44 GMT expires: - '-1' pragma: @@ -7693,7 +7640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '138' x-powered-by: - ASP.NET status: @@ -7713,15 +7660,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7730,7 +7677,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:31 GMT + - Tue, 13 Jul 2021 08:01:45 GMT expires: - '-1' pragma: @@ -7746,7 +7693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '137' x-powered-by: - ASP.NET status: @@ -7766,15 +7713,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7783,7 +7730,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:33 GMT + - Tue, 13 Jul 2021 08:01:46 GMT expires: - '-1' pragma: @@ -7799,7 +7746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '136' x-powered-by: - ASP.NET status: @@ -7819,15 +7766,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7836,7 +7783,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:34 GMT + - Tue, 13 Jul 2021 08:01:48 GMT expires: - '-1' pragma: @@ -7852,7 +7799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '135' x-powered-by: - ASP.NET status: @@ -7872,15 +7819,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7889,7 +7836,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:36 GMT + - Tue, 13 Jul 2021 08:01:49 GMT expires: - '-1' pragma: @@ -7905,7 +7852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '134' x-powered-by: - ASP.NET status: @@ -7925,15 +7872,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7942,7 +7889,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:37 GMT + - Tue, 13 Jul 2021 08:01:50 GMT expires: - '-1' pragma: @@ -7958,7 +7905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '133' x-powered-by: - ASP.NET status: @@ -7978,15 +7925,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7995,7 +7942,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Tue, 13 Jul 2021 08:01:51 GMT expires: - '-1' pragma: @@ -8011,7 +7958,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '132' x-powered-by: - ASP.NET status: @@ -8031,15 +7978,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8048,7 +7995,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:39 GMT + - Tue, 13 Jul 2021 08:01:53 GMT expires: - '-1' pragma: @@ -8064,7 +8011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '131' x-powered-by: - ASP.NET status: @@ -8084,15 +8031,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8101,7 +8048,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:41 GMT + - Tue, 13 Jul 2021 08:01:54 GMT expires: - '-1' pragma: @@ -8117,7 +8064,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '130' x-powered-by: - ASP.NET status: @@ -8137,15 +8084,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8154,7 +8101,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:42 GMT + - Tue, 13 Jul 2021 08:01:55 GMT expires: - '-1' pragma: @@ -8170,7 +8117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '129' x-powered-by: - ASP.NET status: @@ -8190,15 +8137,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8207,7 +8154,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:43 GMT + - Tue, 13 Jul 2021 08:01:57 GMT expires: - '-1' pragma: @@ -8223,7 +8170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '128' x-powered-by: - ASP.NET status: @@ -8243,15 +8190,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8260,7 +8207,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:44 GMT + - Tue, 13 Jul 2021 08:01:58 GMT expires: - '-1' pragma: @@ -8276,7 +8223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '127' x-powered-by: - ASP.NET status: @@ -8296,15 +8243,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8313,7 +8260,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:45 GMT + - Tue, 13 Jul 2021 08:02:00 GMT expires: - '-1' pragma: @@ -8329,7 +8276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '126' x-powered-by: - ASP.NET status: @@ -8349,15 +8296,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8366,7 +8313,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:47 GMT + - Tue, 13 Jul 2021 08:02:01 GMT expires: - '-1' pragma: @@ -8382,7 +8329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '125' x-powered-by: - ASP.NET status: @@ -8402,15 +8349,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8419,7 +8366,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:48 GMT + - Tue, 13 Jul 2021 08:02:02 GMT expires: - '-1' pragma: @@ -8435,7 +8382,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '124' x-powered-by: - ASP.NET status: @@ -8455,15 +8402,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8472,7 +8419,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:49 GMT + - Tue, 13 Jul 2021 08:02:03 GMT expires: - '-1' pragma: @@ -8488,7 +8435,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '123' x-powered-by: - ASP.NET status: @@ -8508,15 +8455,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8525,7 +8472,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:51 GMT + - Tue, 13 Jul 2021 08:02:05 GMT expires: - '-1' pragma: @@ -8541,7 +8488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '122' x-powered-by: - ASP.NET status: @@ -8561,15 +8508,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8578,7 +8525,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:52 GMT + - Tue, 13 Jul 2021 08:02:06 GMT expires: - '-1' pragma: @@ -8594,7 +8541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '121' x-powered-by: - ASP.NET status: @@ -8614,15 +8561,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8631,7 +8578,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:54 GMT + - Tue, 13 Jul 2021 08:02:07 GMT expires: - '-1' pragma: @@ -8647,7 +8594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '120' x-powered-by: - ASP.NET status: @@ -8667,15 +8614,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8684,7 +8631,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:55 GMT + - Tue, 13 Jul 2021 08:02:08 GMT expires: - '-1' pragma: @@ -8700,7 +8647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '119' x-powered-by: - ASP.NET status: @@ -8720,15 +8667,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8737,7 +8684,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:56 GMT + - Tue, 13 Jul 2021 08:02:10 GMT expires: - '-1' pragma: @@ -8753,7 +8700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '118' x-powered-by: - ASP.NET status: @@ -8773,15 +8720,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8790,7 +8737,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:57 GMT + - Tue, 13 Jul 2021 08:02:11 GMT expires: - '-1' pragma: @@ -8806,7 +8753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '117' x-powered-by: - ASP.NET status: @@ -8826,15 +8773,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"InProgress","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"InProgress","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8843,7 +8790,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:59 GMT + - Tue, 13 Jul 2021 08:02:12 GMT expires: - '-1' pragma: @@ -8859,7 +8806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '116' x-powered-by: - ASP.NET status: @@ -8879,15 +8826,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b347d073-611c-46e0-9191-9d51f326538c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27c1bd7b-0451-4f40-9738-fe4130ad8b2b?api-version=2021-01-01 response: body: - string: '{"id":"b347d073-611c-46e0-9191-9d51f326538c","name":"b347d073-611c-46e0-9191-9d51f326538c","status":"Succeeded","startTime":"2021-06-21T12:20:17.7832969Z","endTime":"2021-06-21T12:20:17.7832969Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"224409b9-7a0b-47d1-88a2-e41785a9e91a"}}' + string: '{"id":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","name":"27c1bd7b-0451-4f40-9738-fe4130ad8b2b","status":"Succeeded","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"2021-07-13T08:01:29.5271807Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"acd59f05-7f19-4647-804e-000ee58feaf7"}}' headers: cache-control: - no-cache @@ -8896,7 +8843,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:00 GMT + - Tue, 13 Jul 2021 08:02:13 GMT expires: - '-1' pragma: @@ -8912,7 +8859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '115' x-powered-by: - ASP.NET status: @@ -8932,17 +8879,17 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/224409b9-7a0b-47d1-88a2-e41785a9e91a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/acd59f05-7f19-4647-804e-000ee58feaf7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/224409b9-7a0b-47d1-88a2-e41785a9e91a","name":"224409b9-7a0b-47d1-88a2-e41785a9e91a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.8943059S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/acd59f05-7f19-4647-804e-000ee58feaf7","name":"acd59f05-7f19-4647-804e-000ee58feaf7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.9869375S","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-06-21T12:20:17.7832969Z","endTime":"2021-06-21T12:20:59.6776028Z","activityId":"0906af63-d28b-11eb-9a81-c8f750f92764"}}' + Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:01:29.5271807Z","endTime":"2021-07-13T08:02:13.5141182Z","activityId":"8565c488-e3b0-11eb-afd4-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8951,7 +8898,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:00 GMT + - Tue, 13 Jul 2021 08:02:14 GMT expires: - '-1' pragma: @@ -8988,8 +8935,8 @@ interactions: ParameterSetName: - -g -v -n --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9005,7 +8952,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:01 GMT + - Tue, 13 Jul 2021 08:02:15 GMT expires: - '-1' pragma: @@ -9021,7 +8968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9041,15 +8988,15 @@ interactions: ParameterSetName: - -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9058,7 +9005,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:01 GMT + - Tue, 13 Jul 2021 08:02:15 GMT expires: - '-1' pragma: @@ -9074,7 +9021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9094,24 +9041,24 @@ interactions: ParameterSetName: - -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3Bc5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bc01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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-06-21T12:20:13.6256802Z"},"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","isArchiveEnabled":false}}' + 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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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-07-13T08:01:26.444883Z"},"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","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1487' + - '1486' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Tue, 13 Jul 2021 08:02:16 GMT expires: - '-1' pragma: @@ -9147,15 +9094,15 @@ interactions: ParameterSetName: - -g -v -c User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01 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;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9164,7 +9111,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Tue, 13 Jul 2021 08:02:16 GMT expires: - '-1' pragma: @@ -9180,7 +9127,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -9200,15 +9147,15 @@ interactions: ParameterSetName: - -g -v -c User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01 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;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9217,7 +9164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:03 GMT + - Tue, 13 Jul 2021 08:02:17 GMT expires: - '-1' pragma: @@ -9233,7 +9180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -9253,15 +9200,15 @@ interactions: ParameterSetName: - -g -v -c User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01 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;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9270,7 +9217,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:03 GMT + - Tue, 13 Jul 2021 08:02:17 GMT expires: - '-1' pragma: @@ -9306,15 +9253,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9323,7 +9270,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:04 GMT + - Tue, 13 Jul 2021 08:02:18 GMT expires: - '-1' pragma: @@ -9339,7 +9286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9359,15 +9306,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -9376,7 +9323,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:04 GMT + - Tue, 13 Jul 2021 08:02:18 GMT expires: - '-1' pragma: @@ -9392,7 +9339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9418,28 +9365,28 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bc5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bc01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263/operationsStatus/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d/operationsStatus/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:21:04 GMT + - Tue, 13 Jul 2021 08:02:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263/operationResults/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d/operationResults/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -9447,7 +9394,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -9467,227 +9414,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 - response: - body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:21: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: - - '113' - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 - response: - body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:21: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: - - '112' - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 - response: - body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:21: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: - - '111' - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 - response: - body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:21: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: - - '110' - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9696,7 +9431,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:10 GMT + - Tue, 13 Jul 2021 08:02:19 GMT expires: - '-1' pragma: @@ -9712,7 +9447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '130' x-powered-by: - ASP.NET status: @@ -9732,15 +9467,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9749,7 +9484,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:11 GMT + - Tue, 13 Jul 2021 08:02:21 GMT expires: - '-1' pragma: @@ -9765,7 +9500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '129' x-powered-by: - ASP.NET status: @@ -9785,15 +9520,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9802,7 +9537,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:12 GMT + - Tue, 13 Jul 2021 08:02:22 GMT expires: - '-1' pragma: @@ -9818,7 +9553,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '128' x-powered-by: - ASP.NET status: @@ -9838,15 +9573,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9855,7 +9590,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:13 GMT + - Tue, 13 Jul 2021 08:02:23 GMT expires: - '-1' pragma: @@ -9871,7 +9606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '127' x-powered-by: - ASP.NET status: @@ -9891,15 +9626,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9908,7 +9643,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Tue, 13 Jul 2021 08:02:24 GMT expires: - '-1' pragma: @@ -9924,7 +9659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '126' x-powered-by: - ASP.NET status: @@ -9944,15 +9679,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9961,7 +9696,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:16 GMT + - Tue, 13 Jul 2021 08:02:25 GMT expires: - '-1' pragma: @@ -9977,7 +9712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '125' x-powered-by: - ASP.NET status: @@ -9997,15 +9732,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10014,7 +9749,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 2021 08:02:27 GMT expires: - '-1' pragma: @@ -10030,7 +9765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '124' x-powered-by: - ASP.NET status: @@ -10050,15 +9785,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10067,7 +9802,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:18 GMT + - Tue, 13 Jul 2021 08:02:28 GMT expires: - '-1' pragma: @@ -10083,7 +9818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '123' x-powered-by: - ASP.NET status: @@ -10103,15 +9838,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10120,7 +9855,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:19 GMT + - Tue, 13 Jul 2021 08:02:29 GMT expires: - '-1' pragma: @@ -10136,7 +9871,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '122' x-powered-by: - ASP.NET status: @@ -10156,15 +9891,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10173,7 +9908,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:22 GMT + - Tue, 13 Jul 2021 08:02:30 GMT expires: - '-1' pragma: @@ -10189,7 +9924,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '121' x-powered-by: - ASP.NET status: @@ -10209,15 +9944,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10226,7 +9961,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:23 GMT + - Tue, 13 Jul 2021 08:02:32 GMT expires: - '-1' pragma: @@ -10242,7 +9977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '120' x-powered-by: - ASP.NET status: @@ -10262,15 +9997,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10279,7 +10014,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:24 GMT + - Tue, 13 Jul 2021 08:02:33 GMT expires: - '-1' pragma: @@ -10295,7 +10030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '119' x-powered-by: - ASP.NET status: @@ -10315,15 +10050,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10332,7 +10067,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:25 GMT + - Tue, 13 Jul 2021 08:02:34 GMT expires: - '-1' pragma: @@ -10348,7 +10083,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '118' x-powered-by: - ASP.NET status: @@ -10368,15 +10103,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10385,7 +10120,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:26 GMT + - Tue, 13 Jul 2021 08:02:35 GMT expires: - '-1' pragma: @@ -10401,7 +10136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '117' x-powered-by: - ASP.NET status: @@ -10421,15 +10156,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10438,7 +10173,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:28 GMT + - Tue, 13 Jul 2021 08:02:36 GMT expires: - '-1' pragma: @@ -10454,7 +10189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '116' x-powered-by: - ASP.NET status: @@ -10474,15 +10209,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10491,7 +10226,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:29 GMT + - Tue, 13 Jul 2021 08:02:38 GMT expires: - '-1' pragma: @@ -10507,7 +10242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '115' x-powered-by: - ASP.NET status: @@ -10527,15 +10262,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10544,7 +10279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:30 GMT + - Tue, 13 Jul 2021 08:02:39 GMT expires: - '-1' pragma: @@ -10560,7 +10295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '114' x-powered-by: - ASP.NET status: @@ -10580,15 +10315,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10597,7 +10332,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:31 GMT + - Tue, 13 Jul 2021 08:02:40 GMT expires: - '-1' pragma: @@ -10613,7 +10348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '113' x-powered-by: - ASP.NET status: @@ -10633,15 +10368,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10650,7 +10385,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:33 GMT + - Tue, 13 Jul 2021 08:02:41 GMT expires: - '-1' pragma: @@ -10666,7 +10401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '112' x-powered-by: - ASP.NET status: @@ -10686,15 +10421,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10703,7 +10438,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:34 GMT + - Tue, 13 Jul 2021 08:02:43 GMT expires: - '-1' pragma: @@ -10719,7 +10454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '111' x-powered-by: - ASP.NET status: @@ -10739,15 +10474,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10756,7 +10491,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:35 GMT + - Tue, 13 Jul 2021 08:02:44 GMT expires: - '-1' pragma: @@ -10772,7 +10507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '110' x-powered-by: - ASP.NET status: @@ -10792,15 +10527,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10809,7 +10544,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:36 GMT + - Tue, 13 Jul 2021 08:02:45 GMT expires: - '-1' pragma: @@ -10825,7 +10560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '109' x-powered-by: - ASP.NET status: @@ -10845,15 +10580,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10862,7 +10597,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:37 GMT + - Tue, 13 Jul 2021 08:02:46 GMT expires: - '-1' pragma: @@ -10878,7 +10613,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '108' x-powered-by: - ASP.NET status: @@ -10898,15 +10633,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10915,7 +10650,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:39 GMT + - Tue, 13 Jul 2021 08:02:47 GMT expires: - '-1' pragma: @@ -10931,7 +10666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '107' x-powered-by: - ASP.NET status: @@ -10951,15 +10686,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10968,7 +10703,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:40 GMT + - Tue, 13 Jul 2021 08:02:49 GMT expires: - '-1' pragma: @@ -10984,7 +10719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '106' x-powered-by: - ASP.NET status: @@ -11004,15 +10739,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11021,7 +10756,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:41 GMT + - Tue, 13 Jul 2021 08:02:50 GMT expires: - '-1' pragma: @@ -11037,7 +10772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '105' x-powered-by: - ASP.NET status: @@ -11057,15 +10792,15 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"InProgress","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11074,7 +10809,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:42 GMT + - Tue, 13 Jul 2021 08:02:51 GMT expires: - '-1' pragma: @@ -11090,7 +10825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '104' x-powered-by: - ASP.NET status: @@ -11110,24 +10845,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2af67501-9a8e-41b8-9f41-1071effa1519?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2af67501-9a8e-41b8-9f41-1071effa1519","name":"2af67501-9a8e-41b8-9f41-1071effa1519","status":"Succeeded","startTime":"2021-07-13T08:02:19.6017302Z","endTime":"2021-07-13T08:02:19.6017302Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7fd69663-0123-476c-9061-4a946d6e8752"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:43 GMT + - Tue, 13 Jul 2021 08:02:52 GMT expires: - '-1' pragma: @@ -11143,7 +10878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '103' x-powered-by: - ASP.NET status: @@ -11163,82 +10898,32 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fd69663-0123-476c-9061-4a946d6e8752?api-version=2021-01-01 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fd69663-0123-476c-9061-4a946d6e8752","name":"7fd69663-0123-476c-9061-4a946d6e8752","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.9049192S","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-07-13T08:02:19.6017302Z","endTime":"2021-07-13T08:02:52.5066494Z","activityId":"a3647786-e3b0-11eb-9aac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:45 GMT + - Tue, 13 Jul 2021 08:02: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: - - '81' - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 - response: - body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"InProgress","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:21:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -11249,7 +10934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '149' x-powered-by: - ASP.NET status: @@ -11263,30 +10948,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f8875fd0-9ead-490b-9630-e9ea6c65e4bf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","name":"f8875fd0-9ead-490b-9630-e9ea6c65e4bf","status":"Succeeded","startTime":"2021-06-21T12:21:05.3816846Z","endTime":"2021-06-21T12:21:05.3816846Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"64ad9c62-893c-4b02-8b71-05be2f4291b6"}}' + 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;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '2693' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:47 GMT + - Tue, 13 Jul 2021 08:02:54 GMT expires: - '-1' pragma: @@ -11302,7 +10987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '149' x-powered-by: - ASP.NET status: @@ -11316,39 +11001,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64ad9c62-893c-4b02-8b71-05be2f4291b6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/64ad9c62-893c-4b02-8b71-05be2f4291b6","name":"64ad9c62-893c-4b02-8b71-05be2f4291b6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.942713S","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-06-21T12:21:05.3816846Z","endTime":"2021-06-21T12:21:47.3243976Z","activityId":"25ad2184-d28b-11eb-b115-c8f750f92764"}}' + 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;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}},{"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;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","name":"AzureFileShare;c01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '945' + - '2693' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:48 GMT + - Tue, 13 Jul 2021 08:02: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: @@ -11372,51 +11054,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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%3Bc01de11ca6679a60cf0da13c72de47856fe7f65da194ccfbdb73c90a1e40007d?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 cache-control: - no-cache content-length: - - '2693' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:21:48 GMT + - Tue, 13 Jul 2021 08:02: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/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + 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: @@ -11431,24 +11111,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}},{"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;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","name":"AzureFileShare;c5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263","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","isArchiveEnabled":false}}]}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2693' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:48 GMT + - Tue, 13 Jul 2021 08:02:55 GMT expires: - '-1' pragma: @@ -11481,78 +11161,27 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - 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%3Bc5076c7916cc4be9e981852eedfb98bd9e88ec954c0fe214f6adca99780fc263?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:21: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/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:50 GMT + - Tue, 13 Jul 2021 08:02:56 GMT expires: - '-1' pragma: @@ -11568,7 +11197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '148' x-powered-by: - ASP.NET status: @@ -11588,24 +11217,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:51 GMT + - Tue, 13 Jul 2021 08:02:57 GMT expires: - '-1' pragma: @@ -11621,7 +11250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '147' x-powered-by: - ASP.NET status: @@ -11641,24 +11270,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:52 GMT + - Tue, 13 Jul 2021 08:02:58 GMT expires: - '-1' pragma: @@ -11674,7 +11303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '146' x-powered-by: - ASP.NET status: @@ -11694,24 +11323,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:53 GMT + - Tue, 13 Jul 2021 08:03:00 GMT expires: - '-1' pragma: @@ -11727,7 +11356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '145' x-powered-by: - ASP.NET status: @@ -11747,24 +11376,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:55 GMT + - Tue, 13 Jul 2021 08:03:01 GMT expires: - '-1' pragma: @@ -11780,7 +11409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '144' x-powered-by: - ASP.NET status: @@ -11800,24 +11429,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:56 GMT + - Tue, 13 Jul 2021 08:03:02 GMT expires: - '-1' pragma: @@ -11833,7 +11462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '143' x-powered-by: - ASP.NET status: @@ -11853,24 +11482,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:57 GMT + - Tue, 13 Jul 2021 08:03:03 GMT expires: - '-1' pragma: @@ -11886,7 +11515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '142' x-powered-by: - ASP.NET status: @@ -11906,24 +11535,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:58 GMT + - Tue, 13 Jul 2021 08:03:05 GMT expires: - '-1' pragma: @@ -11939,7 +11568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '141' x-powered-by: - ASP.NET status: @@ -11959,24 +11588,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:00 GMT + - Tue, 13 Jul 2021 08:03:06 GMT expires: - '-1' pragma: @@ -11992,7 +11621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '140' x-powered-by: - ASP.NET status: @@ -12012,24 +11641,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:01 GMT + - Tue, 13 Jul 2021 08:03:07 GMT expires: - '-1' pragma: @@ -12045,7 +11674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '139' x-powered-by: - ASP.NET status: @@ -12065,24 +11694,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:02 GMT + - Tue, 13 Jul 2021 08:03:08 GMT expires: - '-1' pragma: @@ -12098,7 +11727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '138' x-powered-by: - ASP.NET status: @@ -12118,24 +11747,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:03 GMT + - Tue, 13 Jul 2021 08:03:09 GMT expires: - '-1' pragma: @@ -12151,7 +11780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '137' x-powered-by: - ASP.NET status: @@ -12171,24 +11800,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:04 GMT + - Tue, 13 Jul 2021 08:03:11 GMT expires: - '-1' pragma: @@ -12204,7 +11833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '136' x-powered-by: - ASP.NET status: @@ -12224,24 +11853,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:06 GMT + - Tue, 13 Jul 2021 08:03:12 GMT expires: - '-1' pragma: @@ -12257,7 +11886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '135' x-powered-by: - ASP.NET status: @@ -12277,24 +11906,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:07 GMT + - Tue, 13 Jul 2021 08:03:13 GMT expires: - '-1' pragma: @@ -12310,7 +11939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '134' x-powered-by: - ASP.NET status: @@ -12330,24 +11959,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:08 GMT + - Tue, 13 Jul 2021 08:03:14 GMT expires: - '-1' pragma: @@ -12363,7 +11992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '133' x-powered-by: - ASP.NET status: @@ -12383,24 +12012,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"InProgress","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"InProgress","startTime":"2021-07-13T08:02:55.394633Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:09 GMT + - Tue, 13 Jul 2021 08:03:16 GMT expires: - '-1' pragma: @@ -12416,7 +12045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '132' x-powered-by: - ASP.NET status: @@ -12436,24 +12065,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c612a2fd-ea8a-4739-9495-076f5af236fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/07e8b2a8-e0ab-41cf-8f0d-9f08215331c4?api-version=2021-01-01 response: body: - string: '{"id":"c612a2fd-ea8a-4739-9495-076f5af236fa","name":"c612a2fd-ea8a-4739-9495-076f5af236fa","status":"Succeeded","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"2021-06-21T12:21:49.6925837Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fbbd5a53-e74f-41cd-a091-492c30ec435f"}}' + string: '{"id":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","name":"07e8b2a8-e0ab-41cf-8f0d-9f08215331c4","status":"Succeeded","startTime":"2021-07-13T08:02:55.394633Z","endTime":"2021-07-13T08:02:55.394633Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f43e63cb-b006-4421-95e8-c7a2839588c4"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:11 GMT + - Tue, 13 Jul 2021 08:03:17 GMT expires: - '-1' pragma: @@ -12469,7 +12098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '131' x-powered-by: - ASP.NET status: @@ -12489,25 +12118,25 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fbbd5a53-e74f-41cd-a091-492c30ec435f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f43e63cb-b006-4421-95e8-c7a2839588c4?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fbbd5a53-e74f-41cd-a091-492c30ec435f","name":"fbbd5a53-e74f-41cd-a091-492c30ec435f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.4320691S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:21:49.6925837Z","endTime":"2021-06-21T12:22:11.1246528Z","activityId":"40587019-d28b-11eb-89af-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f43e63cb-b006-4421-95e8-c7a2839588c4","name":"f43e63cb-b006-4421-95e8-c7a2839588c4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.5873678S","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-07-13T08:02:55.394633Z","endTime":"2021-07-13T08:03:16.9820008Z","activityId":"b917ba5e-e3b0-11eb-a94c-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '906' + - '905' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:11 GMT + - Tue, 13 Jul 2021 08:03:17 GMT expires: - '-1' pragma: @@ -12544,15 +12173,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","name":"AzureFileShare;8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","name":"AzureFileShare;9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -12561,7 +12190,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:11 GMT + - Tue, 13 Jul 2021 08:03:18 GMT expires: - '-1' pragma: @@ -12577,7 +12206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -12599,28 +12228,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B8342c4565caf31cc8e6c88548aaec16052bb7a29f3824291e089c6f8638ce0c1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d77e9673f136eaa43cf2316999e28f3b53990aae6d89c78340d95516e0bfa84?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:22:13 GMT + - Tue, 13 Jul 2021 08:03: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/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -12628,7 +12257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -12648,15 +12277,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12665,7 +12294,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:13 GMT + - Tue, 13 Jul 2021 08:03:19 GMT expires: - '-1' pragma: @@ -12681,7 +12310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -12701,15 +12330,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12718,7 +12347,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:14 GMT + - Tue, 13 Jul 2021 08:03:20 GMT expires: - '-1' pragma: @@ -12734,7 +12363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -12754,15 +12383,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12771,7 +12400,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:15 GMT + - Tue, 13 Jul 2021 08:03:23 GMT expires: - '-1' pragma: @@ -12787,7 +12416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -12807,15 +12436,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12824,7 +12453,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:16 GMT + - Tue, 13 Jul 2021 08:03:24 GMT expires: - '-1' pragma: @@ -12840,7 +12469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -12860,15 +12489,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12877,7 +12506,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:17 GMT + - Tue, 13 Jul 2021 08:03:25 GMT expires: - '-1' pragma: @@ -12893,7 +12522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '145' x-powered-by: - ASP.NET status: @@ -12913,15 +12542,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12930,7 +12559,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:19 GMT + - Tue, 13 Jul 2021 08:03:26 GMT expires: - '-1' pragma: @@ -12946,7 +12575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '144' x-powered-by: - ASP.NET status: @@ -12966,15 +12595,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12983,7 +12612,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:20 GMT + - Tue, 13 Jul 2021 08:03:27 GMT expires: - '-1' pragma: @@ -12999,7 +12628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '143' x-powered-by: - ASP.NET status: @@ -13019,15 +12648,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13036,7 +12665,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:21 GMT + - Tue, 13 Jul 2021 08:03:29 GMT expires: - '-1' pragma: @@ -13052,7 +12681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '142' x-powered-by: - ASP.NET status: @@ -13072,15 +12701,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13089,7 +12718,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:22 GMT + - Tue, 13 Jul 2021 08:03:30 GMT expires: - '-1' pragma: @@ -13105,7 +12734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '141' x-powered-by: - ASP.NET status: @@ -13125,15 +12754,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13142,7 +12771,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:24 GMT + - Tue, 13 Jul 2021 08:03:31 GMT expires: - '-1' pragma: @@ -13158,7 +12787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '140' x-powered-by: - ASP.NET status: @@ -13178,15 +12807,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13195,7 +12824,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:25 GMT + - Tue, 13 Jul 2021 08:03:32 GMT expires: - '-1' pragma: @@ -13211,7 +12840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '139' x-powered-by: - ASP.NET status: @@ -13231,15 +12860,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13248,7 +12877,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:26 GMT + - Tue, 13 Jul 2021 08:03:34 GMT expires: - '-1' pragma: @@ -13264,7 +12893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '138' x-powered-by: - ASP.NET status: @@ -13284,15 +12913,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13301,7 +12930,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:27 GMT + - Tue, 13 Jul 2021 08:03:35 GMT expires: - '-1' pragma: @@ -13317,7 +12946,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '137' x-powered-by: - ASP.NET status: @@ -13337,15 +12966,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13354,7 +12983,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:29 GMT + - Tue, 13 Jul 2021 08:03:36 GMT expires: - '-1' pragma: @@ -13370,7 +12999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '136' x-powered-by: - ASP.NET status: @@ -13390,15 +13019,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13407,7 +13036,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:30 GMT + - Tue, 13 Jul 2021 08:03:37 GMT expires: - '-1' pragma: @@ -13423,7 +13052,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '135' x-powered-by: - ASP.NET status: @@ -13443,15 +13072,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13460,7 +13089,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:31 GMT + - Tue, 13 Jul 2021 08:03:39 GMT expires: - '-1' pragma: @@ -13476,7 +13105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '134' x-powered-by: - ASP.NET status: @@ -13496,15 +13125,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"InProgress","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"InProgress","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13513,7 +13142,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:32 GMT + - Tue, 13 Jul 2021 08:03:40 GMT expires: - '-1' pragma: @@ -13529,7 +13158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '133' x-powered-by: - ASP.NET status: @@ -13549,15 +13178,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/93947f26-bf18-4ed4-943b-b143968399ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fc1c814-23d3-4635-8b3e-a2f226d4bd65?api-version=2021-01-01 response: body: - string: '{"id":"93947f26-bf18-4ed4-943b-b143968399ba","name":"93947f26-bf18-4ed4-943b-b143968399ba","status":"Succeeded","startTime":"2021-06-21T12:22:13.2676399Z","endTime":"2021-06-21T12:22:13.2676399Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4f818143-893a-4a19-a486-a4fe7c11e64c"}}' + string: '{"id":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","name":"7fc1c814-23d3-4635-8b3e-a2f226d4bd65","status":"Succeeded","startTime":"2021-07-13T08:03:19.7377501Z","endTime":"2021-07-13T08:03:19.7377501Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"caa5c4ae-011b-4c53-a1f7-75f0e8ecd42a"}}' headers: cache-control: - no-cache @@ -13566,7 +13195,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:34 GMT + - Tue, 13 Jul 2021 08:03:41 GMT expires: - '-1' pragma: @@ -13582,7 +13211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '132' x-powered-by: - ASP.NET status: @@ -13602,16 +13231,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f818143-893a-4a19-a486-a4fe7c11e64c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/caa5c4ae-011b-4c53-a1f7-75f0e8ecd42a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f818143-893a-4a19-a486-a4fe7c11e64c","name":"4f818143-893a-4a19-a486-a4fe7c11e64c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.3806707S","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-06-21T12:22:13.2676399Z","endTime":"2021-06-21T12:22:34.6483106Z","activityId":"4e2b2a48-d28b-11eb-a041-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/caa5c4ae-011b-4c53-a1f7-75f0e8ecd42a","name":"caa5c4ae-011b-4c53-a1f7-75f0e8ecd42a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0591981S","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-07-13T08:03:19.7377501Z","endTime":"2021-07-13T08:03:40.7969482Z","activityId":"c773f746-e3b0-11eb-8464-00155ddc6812"}}' headers: cache-control: - no-cache @@ -13620,7 +13249,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:34 GMT + - Tue, 13 Jul 2021 08:03:41 GMT expires: - '-1' pragma: @@ -13637,7 +13266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -13657,8 +13286,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13674,7 +13303,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:35 GMT + - Tue, 13 Jul 2021 08:03:42 GMT expires: - '-1' pragma: @@ -13690,7 +13319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -13712,8 +13341,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -13723,17 +13352,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-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/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:22:36 GMT + - Tue, 13 Jul 2021 08:03:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/07effe97-4c15-4cf5-9334-eacd5348571b?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -13761,18 +13390,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13780,11 +13409,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:36 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -13814,18 +13443,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13833,11 +13462,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:38 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -13867,18 +13496,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13886,11 +13515,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:39 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -13920,18 +13549,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13939,11 +13568,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:40 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -13973,18 +13602,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13992,11 +13621,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:41 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14026,18 +13655,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14045,11 +13674,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:42 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14079,18 +13708,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14098,11 +13727,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:44 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14132,18 +13761,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14151,11 +13780,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:45 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14185,18 +13814,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14204,11 +13833,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:46 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14238,18 +13867,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14257,11 +13886,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:47 GMT + - Tue, 13 Jul 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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14291,18 +13920,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14310,11 +13939,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:48 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14344,18 +13973,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14363,11 +13992,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:50 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14397,18 +14026,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14416,11 +14045,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:51 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14450,18 +14079,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14469,11 +14098,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:52 GMT + - Tue, 13 Jul 2021 08:03: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14503,18 +14132,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14522,11 +14151,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:54 GMT + - Tue, 13 Jul 2021 08:04: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14556,18 +14185,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14575,11 +14204,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:55 GMT + - Tue, 13 Jul 2021 08:04: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14609,18 +14238,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14628,11 +14257,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:56 GMT + - Tue, 13 Jul 2021 08:04: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14662,18 +14291,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14681,11 +14310,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:57 GMT + - Tue, 13 Jul 2021 08:04: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14715,18 +14344,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14734,11 +14363,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:59 GMT + - Tue, 13 Jul 2021 08:04: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/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 pragma: - no-cache server: @@ -14768,12 +14397,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6df19d5f-ccf5-4f25-9011-f16a8fe837ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/07effe97-4c15-4cf5-9334-eacd5348571b?api-version=2021-01-01 response: body: string: '' @@ -14783,7 +14412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:23:00 GMT + - Tue, 13 Jul 2021 08:04:07 GMT expires: - '-1' pragma: @@ -14813,8 +14442,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -14830,7 +14459,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:40 GMT + - Tue, 13 Jul 2021 08:05:47 GMT expires: - '-1' pragma: @@ -14846,7 +14475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -14856,7 +14485,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -14868,9 +14497,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -14880,7 +14509,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:24:44 GMT + - Tue, 13 Jul 2021 08:05:52 GMT expires: - '-1' pragma: @@ -14890,8 +14519,8 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '9' status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 19bcad5a841..1f1557a5f99 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,22 +17,21 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-25T11%3A02%3A42.075766Z''\"","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-07-13T07%3A58%3A32.3890189Z''\"","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: - - Fri, 25 Jun 2021 11:02:41 GMT + - Tue, 13 Jul 2021 07:58:31 GMT expires: - '-1' pragma: @@ -64,13 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-25T11:02:45.0263484Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-25T11:02:45.0263484Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T07:58:35.7506248Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T07:58:35.7506248Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -79,7 +77,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:09 GMT + - Tue, 13 Jul 2021 07:59:02 GMT expires: - '-1' pragma: @@ -107,10 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 - (MSI) + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Fri, 25 Jun 2021 11:03:09 GMT + - Tue, 13 Jul 2021 07:59:00 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:09 GMT + - Tue, 13 Jul 2021 07:59:02 GMT etag: - - '"0x8D937C8D1BB316E"' + - '"0x8D945D41458D59A"' last-modified: - - Fri, 25 Jun 2021 11:03:10 GMT + - Tue, 13 Jul 2021 07:59:02 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,16 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21: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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -168,7 +164,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:10 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -193,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T21:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T21:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -213,16 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21: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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -231,7 +226,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:10 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -267,9 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -285,7 +279,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:11 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -321,25 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa","name":"StorageContainer;Storage;afstests;afsbackupsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"afsbackupsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc","name":"StorageContainer;Storage;afstests;storageysci5wbex6jyc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"storageysci5wbex6jyc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170","name":"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasvmencryptedvmdiag170","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1","name":"StorageContainer;Storage;iaasvm.existing;iaasextstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasextstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1","name":"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasvmnewdiag1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti","name":"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasvmhanaworkloadexisti","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtest-diskbackup-existing;1vnseapod01otds1","name":"StorageContainer;Storage;pscloudtest-diskbackup-existing;1vnseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1vnseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag","name":"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pscloudtestrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b","name":"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestsa1e5a278b","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da","name":"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestsa54bdf8da","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f","name":"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestsa59e1706f","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895","name":"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstesttargetsa8895","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896","name":"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstesttargetsa8896","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","name":"StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestoypr5dfjibpwcp6if","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xbrqcf6l6/providers/Microsoft.Storage/storageAccounts/clitestoypr5dfjibpwcp6if"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","name":"StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttduidxluc6kcgpivk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6spcspvqni/providers/Microsoft.Storage/storageAccounts/clitesttduidxluc6kcgpivk"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","name":"StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bzko354e2edfooet","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj3lk3rkhce/providers/Microsoft.Storage/storageAccounts/clitest6bzko354e2edfooet"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestjdw5rejlhkniqgppt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitestjdw5rejlhkniqgppt"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesty7can45cle24hlrp4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitesty7can45cle24hlrp4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","name":"StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestfyirbb5gvytcafkvo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgocb3jbfyjl/providers/Microsoft.Storage/storageAccounts/clitestfyirbb5gvytcafkvo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '9582' + - '19485' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:12 GMT + - Tue, 13 Jul 2021 07:59:05 GMT expires: - '-1' pragma: @@ -377,9 +370,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -389,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2019-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/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:13 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -427,13 +419,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -443,11 +434,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:13 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -475,13 +466,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -491,11 +481,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:14 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -523,13 +513,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -539,11 +528,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:15 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -571,13 +560,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -587,11 +575,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:16 GMT + - Tue, 13 Jul 2021 07:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -619,13 +607,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -635,11 +622,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:18 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -667,13 +654,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -683,11 +669,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:19 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -715,13 +701,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -731,11 +716,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:20 GMT + - Tue, 13 Jul 2021 07:59: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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -763,13 +748,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -779,11 +763,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:21 GMT + - Tue, 13 Jul 2021 07:59: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/operationResults/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -811,13 +795,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -827,11 +810,11 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:23 GMT + - Tue, 13 Jul 2021 07:59:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -859,13 +842,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/02e1f267-ce26-47ac-b24d-7ca987d5de25?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f8537a08-cd97-49e9-83ef-e404983fe943?api-version=2021-01-01 response: body: string: '' @@ -873,7 +855,7 @@ interactions: cache-control: - no-cache date: - - Fri, 25 Jun 2021 11:03:24 GMT + - Tue, 13 Jul 2021 07:59:17 GMT expires: - '-1' pragma: @@ -903,25 +885,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa","name":"StorageContainer;Storage;afstests;afsbackupsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"afsbackupsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc","name":"StorageContainer;Storage;afstests;storageysci5wbex6jyc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"storageysci5wbex6jyc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc"}},{"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;iaasvm.encryptedvm;iaasvmencryptedvmdiag170","name":"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasvmencryptedvmdiag170","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1","name":"StorageContainer;Storage;iaasvm.existing;iaasextstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasextstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1","name":"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasvmnewdiag1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti","name":"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"iaasvmhanaworkloadexisti","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtest-diskbackup-existing;1vnseapod01otds1","name":"StorageContainer;Storage;pscloudtest-diskbackup-existing;1vnseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1vnseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag","name":"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pscloudtestrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b","name":"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestsa1e5a278b","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da","name":"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestsa54bdf8da","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f","name":"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestsa59e1706f","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895","name":"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstesttargetsa8895","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896","name":"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstesttargetsa8896","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rgj4pvsv3ltc;clitestdw2oyqfkr2ma2yycj","name":"StorageContainer;Storage;clitest.rgj4pvsv3ltc;clitestdw2oyqfkr2ma2yycj","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdw2oyqfkr2ma2yycj","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4pvsv3ltc/providers/Microsoft.Storage/storageAccounts/clitestdw2oyqfkr2ma2yycj"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","name":"StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bh6xri22tsmwz6mx","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw5nd6h6m7r/providers/Microsoft.Storage/storageAccounts/clitest6bh6xri22tsmwz6mx"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '10359' + - '17884' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:25 GMT + - Tue, 13 Jul 2021 07:59:17 GMT expires: - '-1' pragma: @@ -962,9 +943,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -974,7 +954,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -982,11 +962,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:26 GMT + - Tue, 13 Jul 2021 07:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1016,19 +996,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1036,11 +1015,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:26 GMT + - Tue, 13 Jul 2021 07:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1070,19 +1049,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1090,11 +1068,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:27 GMT + - Tue, 13 Jul 2021 07:59:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1124,19 +1102,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1144,11 +1121,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:28 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1178,19 +1155,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1198,11 +1174,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:30 GMT + - Tue, 13 Jul 2021 07:59:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1232,19 +1208,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1252,11 +1227,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:31 GMT + - Tue, 13 Jul 2021 07:59:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1286,19 +1261,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1306,11 +1280,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:32 GMT + - Tue, 13 Jul 2021 07:59:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1340,19 +1314,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1360,11 +1333,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:34 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1394,19 +1367,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1414,11 +1386,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:35 GMT + - Tue, 13 Jul 2021 07:59:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1448,19 +1420,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1468,11 +1439,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:37 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1502,19 +1473,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1522,11 +1492,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:38 GMT + - Tue, 13 Jul 2021 07:59:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1556,19 +1526,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1576,11 +1545,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:39 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1610,19 +1579,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1630,11 +1598,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:40 GMT + - Tue, 13 Jul 2021 07:59:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1664,19 +1632,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1684,11 +1651,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:41 GMT + - Tue, 13 Jul 2021 07:59:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1718,19 +1685,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1738,11 +1704,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:43 GMT + - Tue, 13 Jul 2021 07:59:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1772,19 +1738,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1792,11 +1757,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:44 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1826,19 +1791,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1846,11 +1810,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:45 GMT + - Tue, 13 Jul 2021 07:59:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1880,19 +1844,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1900,11 +1863,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:46 GMT + - Tue, 13 Jul 2021 07:59:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1934,19 +1897,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1954,11 +1916,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:48 GMT + - Tue, 13 Jul 2021 07:59:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -1988,19 +1950,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2008,11 +1969,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:49 GMT + - Tue, 13 Jul 2021 07:59:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2042,19 +2003,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2062,11 +2022,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:50 GMT + - Tue, 13 Jul 2021 07:59:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2096,19 +2056,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2116,11 +2075,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:51 GMT + - Tue, 13 Jul 2021 07:59:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2150,19 +2109,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2170,11 +2128,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:52 GMT + - Tue, 13 Jul 2021 07:59:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2204,19 +2162,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2224,11 +2181,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:54 GMT + - Tue, 13 Jul 2021 07:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2258,19 +2215,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2278,11 +2234,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:55 GMT + - Tue, 13 Jul 2021 07:59:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2312,19 +2268,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2332,11 +2287,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:56 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2366,19 +2321,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2386,11 +2340,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:57 GMT + - Tue, 13 Jul 2021 07:59:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2420,19 +2374,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2440,11 +2393,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:58 GMT + - Tue, 13 Jul 2021 07:59:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2474,19 +2427,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2494,11 +2446,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:00 GMT + - Tue, 13 Jul 2021 07:59:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2528,19 +2480,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2548,11 +2499,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:01 GMT + - Tue, 13 Jul 2021 07:59: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2582,19 +2533,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2602,11 +2552,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:02 GMT + - Tue, 13 Jul 2021 07:59:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2636,19 +2586,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2656,11 +2605,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:03 GMT + - Tue, 13 Jul 2021 07:59:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2690,19 +2639,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2710,11 +2658,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:04 GMT + - Tue, 13 Jul 2021 07:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2744,19 +2692,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2764,11 +2711,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:06 GMT + - Tue, 13 Jul 2021 07:59:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2798,19 +2745,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2818,11 +2764,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:07 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2852,19 +2798,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2872,11 +2817,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:08 GMT + - Tue, 13 Jul 2021 08:00:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2906,19 +2851,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2926,11 +2870,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:09 GMT + - Tue, 13 Jul 2021 08:00:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -2960,19 +2904,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2980,11 +2923,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:10 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3014,19 +2957,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3034,11 +2976,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:12 GMT + - Tue, 13 Jul 2021 08:00:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3068,19 +3010,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3088,11 +3029,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:13 GMT + - Tue, 13 Jul 2021 08:00:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3122,19 +3063,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3142,11 +3082,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:14 GMT + - Tue, 13 Jul 2021 08:00:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3176,19 +3116,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3196,11 +3135,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:15 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3230,19 +3169,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3250,11 +3188,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:16 GMT + - Tue, 13 Jul 2021 08:00:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3284,19 +3222,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3304,11 +3241,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:18 GMT + - Tue, 13 Jul 2021 08:00:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3338,19 +3275,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3358,11 +3294,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:19 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3392,19 +3328,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3412,11 +3347,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:20 GMT + - Tue, 13 Jul 2021 08:00:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3446,19 +3381,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3466,11 +3400,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:21 GMT + - Tue, 13 Jul 2021 08:00:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3500,19 +3434,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3520,11 +3453,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:23 GMT + - Tue, 13 Jul 2021 08:00:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3554,19 +3487,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3574,11 +3506,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:24 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3608,19 +3540,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3628,11 +3559,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:25 GMT + - Tue, 13 Jul 2021 08:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3662,19 +3593,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3682,11 +3612,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:26 GMT + - Tue, 13 Jul 2021 08:00:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3716,19 +3646,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3736,11 +3665,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:27 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3770,19 +3699,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3790,11 +3718,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:29 GMT + - Tue, 13 Jul 2021 08:00:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3824,19 +3752,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3844,11 +3771,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:30 GMT + - Tue, 13 Jul 2021 08:00:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3878,19 +3805,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3898,11 +3824,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:31 GMT + - Tue, 13 Jul 2021 08:00:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3932,19 +3858,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3952,11 +3877,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:32 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -3986,19 +3911,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4006,11 +3930,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:34 GMT + - Tue, 13 Jul 2021 08:00:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-01 pragma: - no-cache server: @@ -4040,43 +3964,146 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ba4a4be-afab-49bf-8f79-880a8507767d?api-version=2021-01-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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:35 GMT + - Tue, 13 Jul 2021 08:00:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '93' x-powered-by: - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:00:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET status: code: 202 message: Accepted @@ -4094,19 +4121,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4114,11 +4140,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:36 GMT + - Tue, 13 Jul 2021 08:00: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/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 pragma: - no-cache server: @@ -4128,7 +4154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '149' x-powered-by: - ASP.NET status: @@ -4148,19 +4174,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4168,11 +4193,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:37 GMT + - Tue, 13 Jul 2021 08:00:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 pragma: - no-cache server: @@ -4182,7 +4207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '148' x-powered-by: - ASP.NET status: @@ -4202,19 +4227,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4222,11 +4246,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:38 GMT + - Tue, 13 Jul 2021 08:00:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 pragma: - no-cache server: @@ -4236,7 +4260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '147' x-powered-by: - ASP.NET status: @@ -4256,46 +4280,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b34fedee-0ebd-4bfe-9e6d-8ee4c26d567e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:40 GMT + - Tue, 13 Jul 2021 08:00:34 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4310,25 +4333,69 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a01959c7-02a2-4176-9b9d-10781c963e65?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Jul 2021 08:00:35 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: + - '145' + 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[]}' + 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;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff","name":"azurefileshare;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff","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: - - Fri, 25 Jun 2021 11:04:40 GMT + - Tue, 13 Jul 2021 08:00:35 GMT expires: - '-1' pragma: @@ -4361,49 +4428,52 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/backupPolicies/clitest-item000005?api-version=2021-01-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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17: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/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '740' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:04:41 GMT + - Tue, 13 Jul 2021 08:00:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.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 @@ -4413,44 +4483,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-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%3Bc70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff?api-version=2021-01-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/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2019-05-13-preview + - https://management.azure.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;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff/operationsStatus/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:04:42 GMT + - Tue, 13 Jul 2021 08:00:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff/operationResults/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -4470,46 +4539,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","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/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:43 GMT + - Tue, 13 Jul 2021 08:00: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/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4524,46 +4592,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","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/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:44 GMT + - Tue, 13 Jul 2021 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/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4578,46 +4645,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","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/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:46 GMT + - Tue, 13 Jul 2021 08:00:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4632,38 +4698,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/652c1b7f-9f23-4b79-b952-e5a4e75f281d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 25 Jun 2021 11:04:47 GMT + - Tue, 13 Jul 2021 08:00:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -4678,25 +4751,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7","name":"azurefileshare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7","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":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1039' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:47 GMT + - Tue, 13 Jul 2021 08:00:43 GMT expires: - '-1' pragma: @@ -4712,7 +4784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -4732,25 +4804,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '740' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:47 GMT + - Tue, 13 Jul 2021 08:00:44 GMT expires: - '-1' pragma: @@ -4766,16 +4837,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '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/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 @@ -4785,49 +4854,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bfe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","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;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7/operationsStatus/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:04:48 GMT + - Tue, 13 Jul 2021 08:00:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7/operationResults/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4842,16 +4910,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4860,7 +4927,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:49 GMT + - Tue, 13 Jul 2021 08:00:46 GMT expires: - '-1' pragma: @@ -4876,7 +4943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '142' x-powered-by: - ASP.NET status: @@ -4896,16 +4963,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4914,7 +4980,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:50 GMT + - Tue, 13 Jul 2021 08:00:48 GMT expires: - '-1' pragma: @@ -4930,7 +4996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '141' x-powered-by: - ASP.NET status: @@ -4950,16 +5016,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4968,7 +5033,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:51 GMT + - Tue, 13 Jul 2021 08:00:49 GMT expires: - '-1' pragma: @@ -4984,7 +5049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '140' x-powered-by: - ASP.NET status: @@ -5004,16 +5069,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5022,7 +5086,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:53 GMT + - Tue, 13 Jul 2021 08:00:50 GMT expires: - '-1' pragma: @@ -5038,7 +5102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '139' x-powered-by: - ASP.NET status: @@ -5058,16 +5122,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5076,7 +5139,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:54 GMT + - Tue, 13 Jul 2021 08:00:51 GMT expires: - '-1' pragma: @@ -5092,7 +5155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '138' x-powered-by: - ASP.NET status: @@ -5112,16 +5175,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5130,7 +5192,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:56 GMT + - Tue, 13 Jul 2021 08:00:53 GMT expires: - '-1' pragma: @@ -5146,7 +5208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '137' x-powered-by: - ASP.NET status: @@ -5166,16 +5228,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5184,7 +5245,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:57 GMT + - Tue, 13 Jul 2021 08:00:54 GMT expires: - '-1' pragma: @@ -5200,7 +5261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '136' x-powered-by: - ASP.NET status: @@ -5220,16 +5281,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5238,7 +5298,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:58 GMT + - Tue, 13 Jul 2021 08:00:55 GMT expires: - '-1' pragma: @@ -5254,7 +5314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '135' x-powered-by: - ASP.NET status: @@ -5274,16 +5334,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5292,7 +5351,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:59 GMT + - Tue, 13 Jul 2021 08:00:56 GMT expires: - '-1' pragma: @@ -5308,7 +5367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '134' x-powered-by: - ASP.NET status: @@ -5328,16 +5387,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5346,7 +5404,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:00 GMT + - Tue, 13 Jul 2021 08:00:58 GMT expires: - '-1' pragma: @@ -5362,7 +5420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '133' x-powered-by: - ASP.NET status: @@ -5382,16 +5440,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5400,7 +5457,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:02 GMT + - Tue, 13 Jul 2021 08:00:59 GMT expires: - '-1' pragma: @@ -5416,7 +5473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '132' x-powered-by: - ASP.NET status: @@ -5436,16 +5493,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5454,7 +5510,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:03 GMT + - Tue, 13 Jul 2021 08:01:00 GMT expires: - '-1' pragma: @@ -5470,7 +5526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '131' x-powered-by: - ASP.NET status: @@ -5490,16 +5546,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5508,7 +5563,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:04 GMT + - Tue, 13 Jul 2021 08:01:01 GMT expires: - '-1' pragma: @@ -5524,7 +5579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '130' x-powered-by: - ASP.NET status: @@ -5544,16 +5599,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5562,7 +5616,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:05 GMT + - Tue, 13 Jul 2021 08:01:02 GMT expires: - '-1' pragma: @@ -5578,7 +5632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '129' x-powered-by: - ASP.NET status: @@ -5598,16 +5652,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5616,7 +5669,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:06 GMT + - Tue, 13 Jul 2021 08:01:04 GMT expires: - '-1' pragma: @@ -5632,7 +5685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '128' x-powered-by: - ASP.NET status: @@ -5652,16 +5705,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5670,7 +5722,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:08 GMT + - Tue, 13 Jul 2021 08:01:05 GMT expires: - '-1' pragma: @@ -5686,7 +5738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '127' x-powered-by: - ASP.NET status: @@ -5706,16 +5758,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5724,7 +5775,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:09 GMT + - Tue, 13 Jul 2021 08:01:06 GMT expires: - '-1' pragma: @@ -5740,7 +5791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '126' x-powered-by: - ASP.NET status: @@ -5760,16 +5811,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5778,7 +5828,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:10 GMT + - Tue, 13 Jul 2021 08:01:07 GMT expires: - '-1' pragma: @@ -5794,7 +5844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '125' x-powered-by: - ASP.NET status: @@ -5814,16 +5864,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5832,7 +5881,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:11 GMT + - Tue, 13 Jul 2021 08:01:09 GMT expires: - '-1' pragma: @@ -5848,7 +5897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '124' x-powered-by: - ASP.NET status: @@ -5868,16 +5917,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5886,7 +5934,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:12 GMT + - Tue, 13 Jul 2021 08:01:10 GMT expires: - '-1' pragma: @@ -5902,7 +5950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '123' x-powered-by: - ASP.NET status: @@ -5922,16 +5970,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5940,7 +5987,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:14 GMT + - Tue, 13 Jul 2021 08:01:11 GMT expires: - '-1' pragma: @@ -5956,7 +6003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '122' x-powered-by: - ASP.NET status: @@ -5976,16 +6023,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5994,7 +6040,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:15 GMT + - Tue, 13 Jul 2021 08:01:12 GMT expires: - '-1' pragma: @@ -6010,7 +6056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '121' x-powered-by: - ASP.NET status: @@ -6030,16 +6076,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6048,7 +6093,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:17 GMT + - Tue, 13 Jul 2021 08:01:14 GMT expires: - '-1' pragma: @@ -6064,7 +6109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '120' x-powered-by: - ASP.NET status: @@ -6084,16 +6129,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6102,7 +6146,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:18 GMT + - Tue, 13 Jul 2021 08:01:15 GMT expires: - '-1' pragma: @@ -6118,7 +6162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '119' x-powered-by: - ASP.NET status: @@ -6138,16 +6182,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6156,7 +6199,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:19 GMT + - Tue, 13 Jul 2021 08:01:16 GMT expires: - '-1' pragma: @@ -6172,7 +6215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '118' x-powered-by: - ASP.NET status: @@ -6192,16 +6235,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6210,7 +6252,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:20 GMT + - Tue, 13 Jul 2021 08:01:17 GMT expires: - '-1' pragma: @@ -6226,7 +6268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '117' x-powered-by: - ASP.NET status: @@ -6246,16 +6288,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6264,7 +6305,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:21 GMT + - Tue, 13 Jul 2021 08:01:19 GMT expires: - '-1' pragma: @@ -6280,7 +6321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '116' x-powered-by: - ASP.NET status: @@ -6300,16 +6341,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6318,7 +6358,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:23 GMT + - Tue, 13 Jul 2021 08:01:20 GMT expires: - '-1' pragma: @@ -6334,7 +6374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '115' x-powered-by: - ASP.NET status: @@ -6354,16 +6394,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6372,7 +6411,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:24 GMT + - Tue, 13 Jul 2021 08:01:21 GMT expires: - '-1' pragma: @@ -6388,7 +6427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '114' x-powered-by: - ASP.NET status: @@ -6408,16 +6447,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6426,7 +6464,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:25 GMT + - Tue, 13 Jul 2021 08:01:22 GMT expires: - '-1' pragma: @@ -6442,7 +6480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '113' x-powered-by: - ASP.NET status: @@ -6462,16 +6500,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6480,7 +6517,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:26 GMT + - Tue, 13 Jul 2021 08:01:24 GMT expires: - '-1' pragma: @@ -6496,7 +6533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '112' x-powered-by: - ASP.NET status: @@ -6516,16 +6553,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6534,7 +6570,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:28 GMT + - Tue, 13 Jul 2021 08:01:25 GMT expires: - '-1' pragma: @@ -6550,7 +6586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '111' x-powered-by: - ASP.NET status: @@ -6570,16 +6606,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6588,7 +6623,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:29 GMT + - Tue, 13 Jul 2021 08:01:26 GMT expires: - '-1' pragma: @@ -6604,7 +6639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '110' x-powered-by: - ASP.NET status: @@ -6624,16 +6659,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6642,7 +6676,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:30 GMT + - Tue, 13 Jul 2021 08:01:27 GMT expires: - '-1' pragma: @@ -6658,7 +6692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '109' x-powered-by: - ASP.NET status: @@ -6678,16 +6712,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"InProgress","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"InProgress","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6696,7 +6729,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:31 GMT + - Tue, 13 Jul 2021 08:01:29 GMT expires: - '-1' pragma: @@ -6712,7 +6745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '108' x-powered-by: - ASP.NET status: @@ -6732,16 +6765,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6926a7a1-a2df-4df9-97b8-cbb9787d169a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dcc7b46d-417b-4715-88f4-e4432d6810fc?api-version=2021-01-01 response: body: - string: '{"id":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","name":"6926a7a1-a2df-4df9-97b8-cbb9787d169a","status":"Succeeded","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"2021-06-25T11:04:49.1022773Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"75e52eee-c050-488a-8844-d6b914a4a400"}}' + string: '{"id":"dcc7b46d-417b-4715-88f4-e4432d6810fc","name":"dcc7b46d-417b-4715-88f4-e4432d6810fc","status":"Succeeded","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"2021-07-13T08:00:36.9084015Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"00230953-be24-42c3-9828-51d30728cfe1"}}' headers: cache-control: - no-cache @@ -6750,7 +6782,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:33 GMT + - Tue, 13 Jul 2021 08:01:30 GMT expires: - '-1' pragma: @@ -6766,7 +6798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '107' x-powered-by: - ASP.NET status: @@ -6786,18 +6818,17 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e52eee-c050-488a-8844-d6b914a4a400?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/00230953-be24-42c3-9828-51d30728cfe1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e52eee-c050-488a-8844-d6b914a4a400","name":"75e52eee-c050-488a-8844-d6b914a4a400","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.8241975S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/00230953-be24-42c3-9828-51d30728cfe1","name":"00230953-be24-42c3-9828-51d30728cfe1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT53.8969598S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-25T11:04:49.1022773Z","endTime":"2021-06-25T11:05:32.9264748Z","activityId":"ee5a4c68-d5a4-11eb-a3f2-c8f750f92764"}}' + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:00:36.9084015Z","endTime":"2021-07-13T08:01:30.8053613Z","activityId":"2f9e7ddc-e3b0-11eb-aab5-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6806,7 +6837,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:34 GMT + - Tue, 13 Jul 2021 08:01:31 GMT expires: - '-1' pragma: @@ -6843,16 +6874,15 @@ interactions: ParameterSetName: - -g -v --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache @@ -6861,7 +6891,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:34 GMT + - Tue, 13 Jul 2021 08:01:31 GMT expires: - '-1' pragma: @@ -6877,7 +6907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -6897,16 +6927,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache @@ -6915,7 +6944,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:35 GMT + - Tue, 13 Jul 2021 08:01:32 GMT expires: - '-1' pragma: @@ -6940,9 +6969,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T21:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T21:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 25, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -6960,16 +6989,15 @@ interactions: ParameterSetName: - -g -v --policy --name --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -6978,7 +7006,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:35 GMT + - Tue, 13 Jul 2021 08:01:32 GMT expires: - '-1' pragma: @@ -6994,7 +7022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -7014,16 +7042,15 @@ interactions: ParameterSetName: - -g -v --n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -7032,7 +7059,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:36 GMT + - Tue, 13 Jul 2021 08:01:32 GMT expires: - '-1' pragma: @@ -7048,7 +7075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7068,16 +7095,15 @@ interactions: ParameterSetName: - -g -v --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21: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-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' + 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":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17: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":["2021-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache @@ -7086,7 +7112,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:37 GMT + - Tue, 13 Jul 2021 08:01:33 GMT expires: - '-1' pragma: @@ -7122,16 +7148,15 @@ interactions: ParameterSetName: - -g -v --policy -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -7140,7 +7165,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:37 GMT + - Tue, 13 Jul 2021 08:01:33 GMT expires: - '-1' pragma: @@ -7156,7 +7181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7165,9 +7190,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T21:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T21:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 20, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -7185,16 +7210,15 @@ interactions: ParameterSetName: - -g -v --policy -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -7203,7 +7227,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:38 GMT + - Tue, 13 Jul 2021 08:01:34 GMT expires: - '-1' pragma: @@ -7239,16 +7263,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-25T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T21:00:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -7257,7 +7280,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:39 GMT + - Tue, 13 Jul 2021 08:01:34 GMT expires: - '-1' pragma: @@ -7293,16 +7316,15 @@ interactions: ParameterSetName: - -g -v -c --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7","name":"AzureFileShare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff","name":"AzureFileShare;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7311,7 +7333,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:38 GMT + - Tue, 13 Jul 2021 08:01:34 GMT expires: - '-1' pragma: @@ -7347,16 +7369,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7","name":"AzureFileShare;fe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff","name":"AzureFileShare;c70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7365,7 +7386,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:39 GMT + - Tue, 13 Jul 2021 08:01:35 GMT expires: - '-1' pragma: @@ -7403,29 +7424,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Bfe467ac334f6fa93a3080bb166e2224e498c2594ebcb1c8fa41e7470a55d62d7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bc70a70bebf5a61f85cae98061273f23a0da858bba565123ef3138d7ce15ae7ff?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Jun 2021 11:05:40 GMT + - Tue, 13 Jul 2021 08:01: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/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7433,7 +7453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -7453,25 +7473,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:40 GMT + - Tue, 13 Jul 2021 08:01:36 GMT expires: - '-1' pragma: @@ -7487,7 +7506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '113' x-powered-by: - ASP.NET status: @@ -7507,25 +7526,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:41 GMT + - Tue, 13 Jul 2021 08:01:37 GMT expires: - '-1' pragma: @@ -7541,7 +7559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '112' x-powered-by: - ASP.NET status: @@ -7561,25 +7579,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:42 GMT + - Tue, 13 Jul 2021 08:01:38 GMT expires: - '-1' pragma: @@ -7595,7 +7612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '111' x-powered-by: - ASP.NET status: @@ -7615,25 +7632,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:44 GMT + - Tue, 13 Jul 2021 08:01:40 GMT expires: - '-1' pragma: @@ -7649,7 +7665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '110' x-powered-by: - ASP.NET status: @@ -7669,25 +7685,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:45 GMT + - Tue, 13 Jul 2021 08:01:41 GMT expires: - '-1' pragma: @@ -7703,7 +7718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '109' x-powered-by: - ASP.NET status: @@ -7723,25 +7738,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:46 GMT + - Tue, 13 Jul 2021 08:01:42 GMT expires: - '-1' pragma: @@ -7757,7 +7771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '108' x-powered-by: - ASP.NET status: @@ -7777,25 +7791,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:47 GMT + - Tue, 13 Jul 2021 08:01:43 GMT expires: - '-1' pragma: @@ -7811,7 +7824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '107' x-powered-by: - ASP.NET status: @@ -7831,25 +7844,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:49 GMT + - Tue, 13 Jul 2021 08:01:44 GMT expires: - '-1' pragma: @@ -7865,7 +7877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '106' x-powered-by: - ASP.NET status: @@ -7885,25 +7897,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:50 GMT + - Tue, 13 Jul 2021 08:01:46 GMT expires: - '-1' pragma: @@ -7919,7 +7930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '105' x-powered-by: - ASP.NET status: @@ -7939,25 +7950,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:51 GMT + - Tue, 13 Jul 2021 08:01:47 GMT expires: - '-1' pragma: @@ -7973,7 +7983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '104' x-powered-by: - ASP.NET status: @@ -7993,25 +8003,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:52 GMT + - Tue, 13 Jul 2021 08:01:48 GMT expires: - '-1' pragma: @@ -8027,7 +8036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '103' x-powered-by: - ASP.NET status: @@ -8047,25 +8056,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:54 GMT + - Tue, 13 Jul 2021 08:01:49 GMT expires: - '-1' pragma: @@ -8081,7 +8089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '102' x-powered-by: - ASP.NET status: @@ -8101,25 +8109,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:55 GMT + - Tue, 13 Jul 2021 08:01:51 GMT expires: - '-1' pragma: @@ -8135,7 +8142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '101' x-powered-by: - ASP.NET status: @@ -8155,25 +8162,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:56 GMT + - Tue, 13 Jul 2021 08:01:52 GMT expires: - '-1' pragma: @@ -8189,7 +8195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '100' x-powered-by: - ASP.NET status: @@ -8209,25 +8215,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:57 GMT + - Tue, 13 Jul 2021 08:01:53 GMT expires: - '-1' pragma: @@ -8243,7 +8248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '99' x-powered-by: - ASP.NET status: @@ -8263,25 +8268,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:58 GMT + - Tue, 13 Jul 2021 08:01:54 GMT expires: - '-1' pragma: @@ -8297,7 +8301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '98' x-powered-by: - ASP.NET status: @@ -8317,25 +8321,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:00 GMT + - Tue, 13 Jul 2021 08:01:55 GMT expires: - '-1' pragma: @@ -8351,7 +8354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '97' x-powered-by: - ASP.NET status: @@ -8371,25 +8374,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"InProgress","startTime":"2021-06-25T11:05:40.365917Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"InProgress","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:01 GMT + - Tue, 13 Jul 2021 08:01:57 GMT expires: - '-1' pragma: @@ -8405,7 +8407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '96' x-powered-by: - ASP.NET status: @@ -8425,25 +8427,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/47f28f55-6b61-4d9c-8bdf-2d0e2b73e893?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7?api-version=2021-01-01 response: body: - string: '{"id":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","name":"47f28f55-6b61-4d9c-8bdf-2d0e2b73e893","status":"Succeeded","startTime":"2021-06-25T11:05:40.365917Z","endTime":"2021-06-25T11:05:40.365917Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"12c5cd4e-c76c-4c8a-a5a2-3989929b4456"}}' + string: '{"id":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","name":"ef107a74-aa9b-42d8-b5fe-e8ae9c39a8c7","status":"Succeeded","startTime":"2021-07-13T08:01:36.4171938Z","endTime":"2021-07-13T08:01:36.4171938Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2807f94a-50b2-4c4f-a2fa-4f88044a0967"}}' headers: cache-control: - no-cache content-length: - - '302' + - '304' content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:02 GMT + - Tue, 13 Jul 2021 08:01:58 GMT expires: - '-1' pragma: @@ -8459,7 +8460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '95' x-powered-by: - ASP.NET status: @@ -8479,26 +8480,25 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/12c5cd4e-c76c-4c8a-a5a2-3989929b4456?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2807f94a-50b2-4c4f-a2fa-4f88044a0967?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/12c5cd4e-c76c-4c8a-a5a2-3989929b4456","name":"12c5cd4e-c76c-4c8a-a5a2-3989929b4456","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.8564288S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-25T11:05:40.365917Z","endTime":"2021-06-25T11:06:02.2223458Z","activityId":"4689d871-d5a5-11eb-b8a9-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2807f94a-50b2-4c4f-a2fa-4f88044a0967","name":"2807f94a-50b2-4c4f-a2fa-4f88044a0967","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.5237708S","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-07-13T08:01:36.4171938Z","endTime":"2021-07-13T08:01:57.9409646Z","activityId":"8a02a60c-e3b0-11eb-9fd9-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '905' + - '906' content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:02 GMT + - Tue, 13 Jul 2021 08:01:59 GMT expires: - '-1' pragma: @@ -8535,9 +8535,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -8553,7 +8552,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:03 GMT + - Tue, 13 Jul 2021 08:02:00 GMT expires: - '-1' pragma: @@ -8591,9 +8590,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -8603,17 +8601,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-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/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Jun 2021 11:06:03 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8641,19 +8639,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8661,11 +8658,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:04 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8675,7 +8672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -8695,19 +8692,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8715,11 +8711,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:05 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8729,7 +8725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -8749,19 +8745,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8769,11 +8764,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:07 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8783,7 +8778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '142' x-powered-by: - ASP.NET status: @@ -8803,19 +8798,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8823,11 +8817,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:08 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8837,7 +8831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: @@ -8857,19 +8851,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8877,11 +8870,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:09 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8891,7 +8884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '140' x-powered-by: - ASP.NET status: @@ -8911,19 +8904,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8931,11 +8923,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:10 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8945,7 +8937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '139' x-powered-by: - ASP.NET status: @@ -8965,19 +8957,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8985,11 +8976,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:11 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -8999,7 +8990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '138' x-powered-by: - ASP.NET status: @@ -9019,19 +9010,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9039,11 +9029,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:13 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9053,7 +9043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '137' x-powered-by: - ASP.NET status: @@ -9073,19 +9063,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9093,11 +9082,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:14 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9107,7 +9096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '136' x-powered-by: - ASP.NET status: @@ -9127,19 +9116,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9147,11 +9135,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:15 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9161,7 +9149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '135' x-powered-by: - ASP.NET status: @@ -9181,19 +9169,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9201,11 +9188,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:16 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9215,7 +9202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '134' x-powered-by: - ASP.NET status: @@ -9235,19 +9222,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9255,11 +9241,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:17 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9269,7 +9255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '133' x-powered-by: - ASP.NET status: @@ -9289,19 +9275,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9309,11 +9294,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:19 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9323,7 +9308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '132' x-powered-by: - ASP.NET status: @@ -9343,19 +9328,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9363,11 +9347,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:20 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9377,7 +9361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '131' x-powered-by: - ASP.NET status: @@ -9397,19 +9381,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9417,11 +9400,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:21 GMT + - Tue, 13 Jul 2021 08:02: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/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9431,7 +9414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '130' x-powered-by: - ASP.NET status: @@ -9451,19 +9434,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9471,11 +9453,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:22 GMT + - Tue, 13 Jul 2021 08:02:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9485,7 +9467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '129' x-powered-by: - ASP.NET status: @@ -9505,19 +9487,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9525,11 +9506,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:23 GMT + - Tue, 13 Jul 2021 08:02:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9539,7 +9520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '128' x-powered-by: - ASP.NET status: @@ -9559,19 +9540,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9579,11 +9559,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:25 GMT + - Tue, 13 Jul 2021 08:02:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9593,7 +9573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '127' x-powered-by: - ASP.NET status: @@ -9613,19 +9593,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9633,11 +9612,11 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:26 GMT + - Tue, 13 Jul 2021 08:02:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 pragma: - no-cache server: @@ -9647,7 +9626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '126' x-powered-by: - ASP.NET status: @@ -9667,13 +9646,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3dc43c41-374b-4601-86fc-bf5a91e5d5cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d60ebce8-e35f-457a-b495-fab5cabae8d0?api-version=2021-01-01 response: body: string: '' @@ -9683,7 +9661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:06:27 GMT + - Tue, 13 Jul 2021 08:02:24 GMT expires: - '-1' pragma: @@ -9693,7 +9671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '125' x-powered-by: - ASP.NET status: @@ -9713,9 +9691,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9731,7 +9708,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:08:08 GMT + - Tue, 13 Jul 2021 08:04:04 GMT expires: - '-1' pragma: @@ -9757,7 +9734,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9769,10 +9746,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -9782,7 +9758,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:08:13 GMT + - Tue, 13 Jul 2021 08:04:08 GMT expires: - '-1' pragma: @@ -9796,4 +9772,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 dbdb7016f8d..27cfc4946b0 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml @@ -17,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-18T06%3A58%3A43.9960836Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T07%3A58%3A32.4230504Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:58:43 GMT + - Tue, 13 Jul 2021 07:58:32 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-18T06:58:47.8538456Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-18T06:58:47.8538456Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T07:58:35.8287362Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T07:58:35.8287362Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:11 GMT + - Tue, 13 Jul 2021 07:58:59 GMT expires: - '-1' pragma: @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.24.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Fri, 18 Jun 2021 06:59:11 GMT + - Tue, 13 Jul 2021 07:58:58 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:12 GMT + - Tue, 13 Jul 2021 07:59:00 GMT etag: - - '"0x8D93226947213DF"' + - '"0x8D945D413AEDA55"' last-modified: - - Fri, 18 Jun 2021 06:59:13 GMT + - Tue, 13 Jul 2021 07:59:01 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -148,14 +148,14 @@ interactions: - -g -v -n User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-18T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-18T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -164,7 +164,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:13 GMT + - Tue, 13 Jul 2021 07:59:02 GMT expires: - '-1' pragma: @@ -189,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-18T16:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T17:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-18T16:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T17:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -210,14 +210,14 @@ interactions: - -g -v --policy -n --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-18T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-18T16: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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:13 GMT + - Tue, 13 Jul 2021 07:59:02 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -263,7 +263,7 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:14 GMT + - Tue, 13 Jul 2021 07:59:02 GMT expires: - '-1' pragma: @@ -316,23 +316,23 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfp4sne26em;clitestcu7pvgj6ftfvagsfy","name":"StorageContainer;Storage;clitest.rgfp4sne26em;clitestcu7pvgj6ftfvagsfy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcu7pvgj6ftfvagsfy","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfp4sne26em/providers/Microsoft.Storage/storageAccounts/clitestcu7pvgj6ftfvagsfy"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","name":"StorageContainer;Storage;clitest.rg3xbrqcf6l6;clitestoypr5dfjibpwcp6if","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestoypr5dfjibpwcp6if","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xbrqcf6l6/providers/Microsoft.Storage/storageAccounts/clitestoypr5dfjibpwcp6if"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","name":"StorageContainer;Storage;clitest.rg6spcspvqni;clitesttduidxluc6kcgpivk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttduidxluc6kcgpivk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6spcspvqni/providers/Microsoft.Storage/storageAccounts/clitesttduidxluc6kcgpivk"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","name":"StorageContainer;Storage;clitest.rgj3lk3rkhce;clitest6bzko354e2edfooet","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bzko354e2edfooet","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj3lk3rkhce/providers/Microsoft.Storage/storageAccounts/clitest6bzko354e2edfooet"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitestjdw5rejlhkniqgppt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestjdw5rejlhkniqgppt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitestjdw5rejlhkniqgppt"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","name":"StorageContainer;Storage;clitest.rgjakbcyqa3u;clitesty7can45cle24hlrp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesty7can45cle24hlrp4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjakbcyqa3u/providers/Microsoft.Storage/storageAccounts/clitesty7can45cle24hlrp4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","name":"StorageContainer;Storage;clitest.rgocb3jbfyjl;clitestfyirbb5gvytcafkvo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestfyirbb5gvytcafkvo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgocb3jbfyjl/providers/Microsoft.Storage/storageAccounts/clitestfyirbb5gvytcafkvo"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '14658' + - '19485' content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:15 GMT + - Tue, 13 Jul 2021 07:59:03 GMT expires: - '-1' pragma: @@ -371,7 +371,7 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -381,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2019-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/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:15 GMT + - Tue, 13 Jul 2021 07:59:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -420,11 +420,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -434,11 +434,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:16 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -467,11 +467,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -481,11 +481,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:17 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -514,11 +514,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -528,11 +528,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:18 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -561,11 +561,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -575,11 +575,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:19 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -608,11 +608,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -622,11 +622,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:21 GMT + - Tue, 13 Jul 2021 07:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -655,11 +655,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -669,11 +669,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:22 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -702,11 +702,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -716,11 +716,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:23 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -749,11 +749,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -763,11 +763,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:24 GMT + - Tue, 13 Jul 2021 07:59: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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -796,11 +796,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -810,11 +810,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 06:59:26 GMT + - Tue, 13 Jul 2021 07:59: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/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -843,11 +843,11 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/0e0cecee-763a-40f8-8c40-e03d89980870?api-version=2021-01-01 response: body: string: '' @@ -855,7 +855,7 @@ interactions: cache-control: - no-cache date: - - Fri, 18 Jun 2021 06:59:27 GMT + - Tue, 13 Jul 2021 07:59:15 GMT expires: - '-1' pragma: @@ -886,27 +886,29 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjyoe73iqjb;clitestiesk4t4ie5lw77adk","name":"StorageContainer;Storage;clitest.rgjyoe73iqjb;clitestiesk4t4ie5lw77adk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiesk4t4ie5lw77adk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjyoe73iqjb/providers/Microsoft.Storage/storageAccounts/clitestiesk4t4ie5lw77adk"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rg46agqfkrgg;clitestsxed5iyal6p3uv4ie","name":"StorageContainer;Storage;clitest.rg46agqfkrgg;clitestsxed5iyal6p3uv4ie","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsxed5iyal6p3uv4ie","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46agqfkrgg/providers/Microsoft.Storage/storageAccounts/clitestsxed5iyal6p3uv4ie"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgj4pvsv3ltc;clitestdw2oyqfkr2ma2yycj","name":"StorageContainer;Storage;clitest.rgj4pvsv3ltc;clitestdw2oyqfkr2ma2yycj","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdw2oyqfkr2ma2yycj","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4pvsv3ltc/providers/Microsoft.Storage/storageAccounts/clitestdw2oyqfkr2ma2yycj"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","name":"StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bh6xri22tsmwz6mx","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw5nd6h6m7r/providers/Microsoft.Storage/storageAccounts/clitest6bh6xri22tsmwz6mx"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '16377' + - '18661' content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:27 GMT + - Tue, 13 Jul 2021 07:59:16 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -942,51 +944,46 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","name":"StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvxpkc5mxr64qsinm4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3m5mkejasm/providers/Microsoft.Storage/storageAccounts/clitestvxpkc5mxr64qsinm4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","name":"StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxwjqcdjfjsdxdfwxf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg523jlp2qto/providers/Microsoft.Storage/storageAccounts/clitestxwjqcdjfjsdxdfwxf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '6381' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:29 GMT + - Tue, 13 Jul 2021 07:59:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' 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/clitest000003"}}' + body: null headers: Accept: - application/json @@ -996,25 +993,21 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1022,11 +1015,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:29 GMT + - Tue, 13 Jul 2021 07:59:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1057,17 +1050,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1075,11 +1068,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:30 GMT + - Tue, 13 Jul 2021 07:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1110,17 +1103,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1128,11 +1121,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:32 GMT + - Tue, 13 Jul 2021 07:59:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1163,17 +1156,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1181,11 +1174,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:33 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1216,17 +1209,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1234,11 +1227,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:34 GMT + - Tue, 13 Jul 2021 07:59:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1269,17 +1262,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1287,11 +1280,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:35 GMT + - Tue, 13 Jul 2021 07:59:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1322,17 +1315,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1340,11 +1333,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:37 GMT + - Tue, 13 Jul 2021 07:59:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1375,17 +1368,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1393,11 +1386,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:38 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1428,17 +1421,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1446,11 +1439,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:39 GMT + - Tue, 13 Jul 2021 07:59:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1481,17 +1474,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1499,11 +1492,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:41 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1534,17 +1527,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1552,11 +1545,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:42 GMT + - Tue, 13 Jul 2021 07:59:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1587,17 +1580,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1605,11 +1598,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:43 GMT + - Tue, 13 Jul 2021 07:59:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1640,17 +1633,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1658,11 +1651,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:44 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1693,17 +1686,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1711,11 +1704,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:46 GMT + - Tue, 13 Jul 2021 07:59:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1746,17 +1739,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1764,11 +1757,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:47 GMT + - Tue, 13 Jul 2021 07:59:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1799,17 +1792,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1817,11 +1810,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:48 GMT + - Tue, 13 Jul 2021 07:59:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1852,17 +1845,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1870,11 +1863,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:50 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1905,17 +1898,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1923,11 +1916,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:51 GMT + - Tue, 13 Jul 2021 07:59:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -1958,17 +1951,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1976,11 +1969,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:52 GMT + - Tue, 13 Jul 2021 07:59:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2011,17 +2004,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2029,11 +2022,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:53 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2064,17 +2057,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2082,11 +2075,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:55 GMT + - Tue, 13 Jul 2021 07:59:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2117,17 +2110,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2135,11 +2128,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:56 GMT + - Tue, 13 Jul 2021 07:59:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2170,17 +2163,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2188,11 +2181,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:57 GMT + - Tue, 13 Jul 2021 07:59:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2223,17 +2216,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2241,11 +2234,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:58 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2276,17 +2269,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2294,11 +2287,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 06:59:59 GMT + - Tue, 13 Jul 2021 07:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2329,17 +2322,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2347,11 +2340,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:01 GMT + - Tue, 13 Jul 2021 07:59:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2375,24 +2368,24 @@ 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2400,11 +2393,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:02 GMT + - Tue, 13 Jul 2021 07:59: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2435,17 +2428,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2453,11 +2446,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:04 GMT + - Tue, 13 Jul 2021 07:59:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2488,17 +2481,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2506,11 +2499,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:05 GMT + - Tue, 13 Jul 2021 07:59:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2541,17 +2534,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2559,11 +2552,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:06 GMT + - Tue, 13 Jul 2021 07:59:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2594,17 +2587,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2612,11 +2605,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:07 GMT + - Tue, 13 Jul 2021 07:59:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2647,17 +2640,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2665,11 +2658,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:09 GMT + - Tue, 13 Jul 2021 07:59:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2700,17 +2693,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2718,11 +2711,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:10 GMT + - Tue, 13 Jul 2021 07:59:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2753,17 +2746,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2771,11 +2764,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:11 GMT + - Tue, 13 Jul 2021 07:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2806,17 +2799,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2824,11 +2817,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:13 GMT + - Tue, 13 Jul 2021 07:59:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2859,17 +2852,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2877,11 +2870,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:14 GMT + - Tue, 13 Jul 2021 08:00: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2912,17 +2905,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2930,11 +2923,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:15 GMT + - Tue, 13 Jul 2021 08:00:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -2965,17 +2958,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2983,11 +2976,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:16 GMT + - Tue, 13 Jul 2021 08:00:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3018,17 +3011,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3036,11 +3029,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:18 GMT + - Tue, 13 Jul 2021 08:00: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3071,17 +3064,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3089,11 +3082,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:19 GMT + - Tue, 13 Jul 2021 08:00:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3124,17 +3117,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3142,11 +3135,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:20 GMT + - Tue, 13 Jul 2021 08:00:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3177,17 +3170,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3195,11 +3188,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:22 GMT + - Tue, 13 Jul 2021 08:00:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3230,17 +3223,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3248,11 +3241,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:23 GMT + - Tue, 13 Jul 2021 08:00: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3283,17 +3276,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3301,11 +3294,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:24 GMT + - Tue, 13 Jul 2021 08:00:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3336,17 +3329,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3354,11 +3347,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:26 GMT + - Tue, 13 Jul 2021 08:00:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3389,17 +3382,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3407,11 +3400,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:27 GMT + - Tue, 13 Jul 2021 08:00: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3442,17 +3435,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3460,11 +3453,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:28 GMT + - Tue, 13 Jul 2021 08:00:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3495,17 +3488,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3513,11 +3506,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:29 GMT + - Tue, 13 Jul 2021 08:00:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3548,17 +3541,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3566,11 +3559,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:31 GMT + - Tue, 13 Jul 2021 08:00:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3601,17 +3594,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3619,11 +3612,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:32 GMT + - Tue, 13 Jul 2021 08:00: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3654,17 +3647,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3672,11 +3665,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:33 GMT + - Tue, 13 Jul 2021 08:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3707,17 +3700,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3725,11 +3718,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:34 GMT + - Tue, 13 Jul 2021 08:00:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3760,17 +3753,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3778,11 +3771,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:36 GMT + - Tue, 13 Jul 2021 08:00: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/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -3813,35 +3806,35 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:37 GMT + - Tue, 13 Jul 2021 08:00:22 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -3849,8 +3842,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3866,44 +3859,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-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/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:37 GMT + - Tue, 13 Jul 2021 08:00:23 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '95' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3915,41 +3908,43 @@ 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-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/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Fri, 18 Jun 2021 07:00:38 GMT + - Tue, 13 Jul 2021 08:00:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -3970,17 +3965,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3988,11 +3983,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:39 GMT + - Tue, 13 Jul 2021 08:00: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/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -4002,7 +3997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '93' x-powered-by: - ASP.NET status: @@ -4023,17 +4018,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4041,11 +4036,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:40 GMT + - Tue, 13 Jul 2021 08:00:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -4055,7 +4050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '92' x-powered-by: - ASP.NET status: @@ -4076,17 +4071,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4094,11 +4089,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:41 GMT + - Tue, 13 Jul 2021 08:00:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -4108,7 +4103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '91' x-powered-by: - ASP.NET status: @@ -4129,17 +4124,17 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4147,11 +4142,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:43 GMT + - Tue, 13 Jul 2021 08:00:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache server: @@ -4161,7 +4156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '90' x-powered-by: - ASP.NET status: @@ -4182,36 +4177,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-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/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Jun 2021 07:00:44 GMT + - Tue, 13 Jul 2021 08:00:31 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '89' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -4227,23 +4230,76 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1039' + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/35de57b3-3afd-411c-972b-3844ca0628d1?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:44 GMT + - Tue, 13 Jul 2021 08:00:33 GMT expires: - '-1' pragma: @@ -4259,7 +4315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '87' x-powered-by: - ASP.NET status: @@ -4280,23 +4336,23 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-18T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-18T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '740' + - '12' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:45 GMT + - Tue, 13 Jul 2021 08:00:34 GMT expires: - '-1' pragma: @@ -4312,16 +4368,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.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 @@ -4332,34 +4386,32 @@ interactions: Connection: - keep-alive Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Baabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da?api-version=2021-01-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=2021-01-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/protectedItems/azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationsStatus/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Jun 2021 07:00:45 GMT + - Tue, 13 Jul 2021 08:00: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;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationResults/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4367,7 +4419,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -4388,44 +4440,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:46 GMT + - Tue, 13 Jul 2021 08:00:34 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '92' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4441,44 +4493,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:47 GMT + - Tue, 13 Jul 2021 08:00:36 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '91' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4494,44 +4546,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:49 GMT + - Tue, 13 Jul 2021 08:00: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/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '90' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4547,44 +4599,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:51 GMT + - Tue, 13 Jul 2021 08:00:38 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '89' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4600,44 +4652,44 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:52 GMT + - Tue, 13 Jul 2021 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/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '88' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4653,44 +4705,36 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/da176795-db5b-4a14-84a3-d08722fbd77e?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Jun 2021 07:00:53 GMT + - Tue, 13 Jul 2021 08:00:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '87' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -4706,23 +4750,23 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + 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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","name":"azurefileshare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","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: - - Fri, 18 Jun 2021 07:00:54 GMT + - Tue, 13 Jul 2021 08:00:41 GMT expires: - '-1' pragma: @@ -4738,7 +4782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '148' x-powered-by: - ASP.NET status: @@ -4759,14 +4803,599 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + 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-07-13T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af/operationsStatus/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:00:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af/operationResults/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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 protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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: + - '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 + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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: + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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: + - '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 --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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: + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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 enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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 enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:00: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: + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4775,7 +5404,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:56 GMT + - Tue, 13 Jul 2021 08:00:55 GMT expires: - '-1' pragma: @@ -4791,7 +5420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: @@ -4812,14 +5441,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4828,7 +5457,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:57 GMT + - Tue, 13 Jul 2021 08:00:56 GMT expires: - '-1' pragma: @@ -4844,7 +5473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '139' x-powered-by: - ASP.NET status: @@ -4865,14 +5494,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4881,7 +5510,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:00:58 GMT + - Tue, 13 Jul 2021 08:00:57 GMT expires: - '-1' pragma: @@ -4897,7 +5526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '138' x-powered-by: - ASP.NET status: @@ -4918,14 +5547,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4934,7 +5563,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:00 GMT + - Tue, 13 Jul 2021 08:00:58 GMT expires: - '-1' pragma: @@ -4950,7 +5579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '137' x-powered-by: - ASP.NET status: @@ -4971,14 +5600,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4987,7 +5616,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:01 GMT + - Tue, 13 Jul 2021 08:00:59 GMT expires: - '-1' pragma: @@ -5003,7 +5632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '136' x-powered-by: - ASP.NET status: @@ -5024,14 +5653,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5040,7 +5669,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:02 GMT + - Tue, 13 Jul 2021 08:01:01 GMT expires: - '-1' pragma: @@ -5056,7 +5685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '135' x-powered-by: - ASP.NET status: @@ -5077,14 +5706,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5093,7 +5722,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:04 GMT + - Tue, 13 Jul 2021 08:01:02 GMT expires: - '-1' pragma: @@ -5109,7 +5738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '134' x-powered-by: - ASP.NET status: @@ -5130,14 +5759,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5146,7 +5775,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:05 GMT + - Tue, 13 Jul 2021 08:01:03 GMT expires: - '-1' pragma: @@ -5162,7 +5791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '133' x-powered-by: - ASP.NET status: @@ -5183,14 +5812,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5199,7 +5828,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:06 GMT + - Tue, 13 Jul 2021 08:01:04 GMT expires: - '-1' pragma: @@ -5215,7 +5844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '132' x-powered-by: - ASP.NET status: @@ -5236,14 +5865,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5252,7 +5881,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:08 GMT + - Tue, 13 Jul 2021 08:01:05 GMT expires: - '-1' pragma: @@ -5268,7 +5897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '131' x-powered-by: - ASP.NET status: @@ -5289,14 +5918,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5305,7 +5934,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:09 GMT + - Tue, 13 Jul 2021 08:01:07 GMT expires: - '-1' pragma: @@ -5321,7 +5950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '130' x-powered-by: - ASP.NET status: @@ -5342,14 +5971,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5358,7 +5987,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:10 GMT + - Tue, 13 Jul 2021 08:01:08 GMT expires: - '-1' pragma: @@ -5374,7 +6003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '129' x-powered-by: - ASP.NET status: @@ -5395,14 +6024,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5411,7 +6040,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:11 GMT + - Tue, 13 Jul 2021 08:01:09 GMT expires: - '-1' pragma: @@ -5427,7 +6056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '128' x-powered-by: - ASP.NET status: @@ -5448,14 +6077,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5464,7 +6093,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:13 GMT + - Tue, 13 Jul 2021 08:01:10 GMT expires: - '-1' pragma: @@ -5480,7 +6109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '127' x-powered-by: - ASP.NET status: @@ -5501,14 +6130,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5517,7 +6146,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:14 GMT + - Tue, 13 Jul 2021 08:01:12 GMT expires: - '-1' pragma: @@ -5533,7 +6162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '126' x-powered-by: - ASP.NET status: @@ -5554,14 +6183,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5570,7 +6199,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:15 GMT + - Tue, 13 Jul 2021 08:01:13 GMT expires: - '-1' pragma: @@ -5586,7 +6215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '125' x-powered-by: - ASP.NET status: @@ -5607,14 +6236,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5623,7 +6252,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:17 GMT + - Tue, 13 Jul 2021 08:01:14 GMT expires: - '-1' pragma: @@ -5639,7 +6268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '124' x-powered-by: - ASP.NET status: @@ -5660,14 +6289,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5676,7 +6305,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:18 GMT + - Tue, 13 Jul 2021 08:01:15 GMT expires: - '-1' pragma: @@ -5692,7 +6321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '123' x-powered-by: - ASP.NET status: @@ -5713,14 +6342,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5729,7 +6358,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:19 GMT + - Tue, 13 Jul 2021 08:01:17 GMT expires: - '-1' pragma: @@ -5745,7 +6374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '122' x-powered-by: - ASP.NET status: @@ -5766,14 +6395,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5782,7 +6411,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:21 GMT + - Tue, 13 Jul 2021 08:01:18 GMT expires: - '-1' pragma: @@ -5798,7 +6427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '121' x-powered-by: - ASP.NET status: @@ -5819,14 +6448,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5835,7 +6464,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:22 GMT + - Tue, 13 Jul 2021 08:01:19 GMT expires: - '-1' pragma: @@ -5851,7 +6480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '120' x-powered-by: - ASP.NET status: @@ -5872,14 +6501,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5888,7 +6517,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:23 GMT + - Tue, 13 Jul 2021 08:01:20 GMT expires: - '-1' pragma: @@ -5904,7 +6533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '119' x-powered-by: - ASP.NET status: @@ -5925,14 +6554,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5941,7 +6570,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:24 GMT + - Tue, 13 Jul 2021 08:01:22 GMT expires: - '-1' pragma: @@ -5957,7 +6586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '118' x-powered-by: - ASP.NET status: @@ -5978,14 +6607,14 @@ interactions: - -g -v --storage-account --azure-file-share -p User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5994,7 +6623,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:26 GMT + - Tue, 13 Jul 2021 08:01:23 GMT expires: - '-1' pragma: @@ -6010,7 +6639,166 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"InProgress","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d08f3ec9-77c8-47e3-9ea8-7400f43a64f2?api-version=2021-01-01 + response: + body: + string: '{"id":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","name":"d08f3ec9-77c8-47e3-9ea8-7400f43a64f2","status":"Succeeded","startTime":"2021-07-13T08:00:43.3875003Z","endTime":"2021-07-13T08:00:43.3875003Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"add027c9-9899-4103-b6e7-8cbc031ad0d2"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -6028,26 +6816,82 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/add027c9-9899-4103-b6e7-8cbc031ad0d2?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/add027c9-9899-4103-b6e7-8cbc031ad0d2","name":"add027c9-9899-4103-b6e7-8cbc031ad0d2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.1469329S","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-07-13T08:00:43.3875003Z","endTime":"2021-07-13T08:01:26.5344332Z","activityId":"2f185c9a-e3b0-11eb-bfa5-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '946' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:01: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' + 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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","name":"AzureFileShare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:27 GMT + - Tue, 13 Jul 2021 08:01:27 GMT expires: - '-1' pragma: @@ -6063,7 +6907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '149' x-powered-by: - ASP.NET status: @@ -6077,30 +6921,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"Succeeded","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"2021-06-18T07:00:46.3898341Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"37dac22e-45ba-4014-b4f3-fca9ec7d7be3"}}' + 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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","name":"AzureFileShare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1352' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:28 GMT + - Tue, 13 Jul 2021 08:01:27 GMT expires: - '-1' pragma: @@ -6116,68 +6960,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '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": "", "protectedItemType": "AzureFileShareProtectedItem", "protectionState": + "ProtectionStopped"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/37dac22e-45ba-4014-b4f3-fca9ec7d7be3?api-version=2021-01-01 + 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%3B8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/37dac22e-45ba-4014-b4f3-fca9ec7d7be3","name":"37dac22e-45ba-4014-b4f3-fca9ec7d7be3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.9548331S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"2021-06-18T07:01:28.3446672Z","activityId":"b0e970ac-d002-11eb-b2d0-00155d657312"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af/operationsStatus/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 cache-control: - no-cache content-length: - - '946' - content-type: - - application/json + - '0' date: - - Fri, 18 Jun 2021 07:01:28 GMT + - Tue, 13 Jul 2021 08:01: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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af/operationResults/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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: @@ -6186,30 +7029,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 --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1352' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:28 GMT + - Tue, 13 Jul 2021 08:01:28 GMT expires: - '-1' pragma: @@ -6225,7 +7068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6246,23 +7089,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1352' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:29 GMT + - Tue, 13 Jul 2021 08:01:30 GMT expires: - '-1' pragma: @@ -6278,16 +7121,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.storage/storageAccounts/clitest000003", - "policyId": "", "protectedItemType": "AzureFileShareProtectedItem", "protectionState": - "ProtectionStopped"}}' + body: null headers: Accept: - application/json @@ -6297,48 +7138,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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Baabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","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;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationsStatus/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Fri, 18 Jun 2021 07:01:30 GMT + - Tue, 13 Jul 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/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationResults/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + 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: @@ -6354,23 +7195,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:30 GMT + - Tue, 13 Jul 2021 08:01:32 GMT expires: - '-1' pragma: @@ -6386,7 +7227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -6407,23 +7248,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:31 GMT + - Tue, 13 Jul 2021 08:01:33 GMT expires: - '-1' pragma: @@ -6439,7 +7280,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -6460,23 +7301,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:34 GMT + - Tue, 13 Jul 2021 08:01:34 GMT expires: - '-1' pragma: @@ -6492,7 +7333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -6513,23 +7354,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:35 GMT + - Tue, 13 Jul 2021 08:01:36 GMT expires: - '-1' pragma: @@ -6545,7 +7386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '143' x-powered-by: - ASP.NET status: @@ -6566,23 +7407,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:37 GMT + - Tue, 13 Jul 2021 08:01:37 GMT expires: - '-1' pragma: @@ -6598,7 +7439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '142' x-powered-by: - ASP.NET status: @@ -6619,23 +7460,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:38 GMT + - Tue, 13 Jul 2021 08:01:38 GMT expires: - '-1' pragma: @@ -6651,7 +7492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '141' x-powered-by: - ASP.NET status: @@ -6672,23 +7513,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:39 GMT + - Tue, 13 Jul 2021 08:01:39 GMT expires: - '-1' pragma: @@ -6704,7 +7545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '140' x-powered-by: - ASP.NET status: @@ -6725,23 +7566,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:40 GMT + - Tue, 13 Jul 2021 08:01:42 GMT expires: - '-1' pragma: @@ -6757,7 +7598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '139' x-powered-by: - ASP.NET status: @@ -6778,23 +7619,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:41 GMT + - Tue, 13 Jul 2021 08:01:43 GMT expires: - '-1' pragma: @@ -6810,7 +7651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '138' x-powered-by: - ASP.NET status: @@ -6831,23 +7672,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:43 GMT + - Tue, 13 Jul 2021 08:01:44 GMT expires: - '-1' pragma: @@ -6863,7 +7704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '137' x-powered-by: - ASP.NET status: @@ -6884,23 +7725,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:44 GMT + - Tue, 13 Jul 2021 08:01:45 GMT expires: - '-1' pragma: @@ -6916,7 +7757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '136' x-powered-by: - ASP.NET status: @@ -6937,23 +7778,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:45 GMT + - Tue, 13 Jul 2021 08:01:46 GMT expires: - '-1' pragma: @@ -6969,7 +7810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '135' x-powered-by: - ASP.NET status: @@ -6990,23 +7831,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:46 GMT + - Tue, 13 Jul 2021 08:01:48 GMT expires: - '-1' pragma: @@ -7022,7 +7863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '134' x-powered-by: - ASP.NET status: @@ -7043,23 +7884,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:48 GMT + - Tue, 13 Jul 2021 08:01:49 GMT expires: - '-1' pragma: @@ -7075,7 +7916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '133' x-powered-by: - ASP.NET status: @@ -7096,23 +7937,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:49 GMT + - Tue, 13 Jul 2021 08:01:50 GMT expires: - '-1' pragma: @@ -7128,7 +7969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '132' x-powered-by: - ASP.NET status: @@ -7149,23 +7990,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"InProgress","startTime":"2021-07-13T08:01:29.269122Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:50 GMT + - Tue, 13 Jul 2021 08:01:51 GMT expires: - '-1' pragma: @@ -7181,7 +8022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '131' x-powered-by: - ASP.NET status: @@ -7202,23 +8043,23 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/41492bda-9f3c-4e86-aff7-430ab30edb5b?api-version=2021-01-01 response: body: - string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"Succeeded","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"2021-06-18T07:01:30.5071074Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"05da261f-4542-455e-90ff-081c30bc7df0"}}' + string: '{"id":"41492bda-9f3c-4e86-aff7-430ab30edb5b","name":"41492bda-9f3c-4e86-aff7-430ab30edb5b","status":"Succeeded","startTime":"2021-07-13T08:01:29.269122Z","endTime":"2021-07-13T08:01:29.269122Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c0bb4b12-abbd-4f1d-8ca7-e3867e4bf423"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:51 GMT + - Tue, 13 Jul 2021 08:01:53 GMT expires: - '-1' pragma: @@ -7234,7 +8075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '130' x-powered-by: - ASP.NET status: @@ -7255,24 +8096,24 @@ interactions: - -g -v -c -i --backup-management-type --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05da261f-4542-455e-90ff-081c30bc7df0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0bb4b12-abbd-4f1d-8ca7-e3867e4bf423?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05da261f-4542-455e-90ff-081c30bc7df0","name":"05da261f-4542-455e-90ff-081c30bc7df0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0616568S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DisableBackup","status":"Completed","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"2021-06-18T07:01:51.5687642Z","activityId":"01526068-d003-11eb-a1b0-00155d657312"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0bb4b12-abbd-4f1d-8ca7-e3867e4bf423","name":"c0bb4b12-abbd-4f1d-8ca7-e3867e4bf423","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT22.9344542S","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-07-13T08:01:29.269122Z","endTime":"2021-07-13T08:01:52.2035762Z","activityId":"85a6f062-e3b0-11eb-a56a-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '903' + - '902' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:51 GMT + - Tue, 13 Jul 2021 08:01:53 GMT expires: - '-1' pragma: @@ -7310,14 +8151,14 @@ interactions: - -g -v -c -n --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' + 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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","name":"AzureFileShare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7326,7 +8167,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:53 GMT + - Tue, 13 Jul 2021 08:01:53 GMT expires: - '-1' pragma: @@ -7363,14 +8204,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' + 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;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","name":"AzureFileShare;8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7379,14 +8220,13 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:53 GMT + - Tue, 13 Jul 2021 08:01: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: @@ -7410,7 +8250,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive Content-Length: @@ -7419,27 +8259,27 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3Baabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B8bd30ee2c107f3674d5ce388fe8dbadd6e2a80cc9959e976f7c4daf608aee6af?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Jun 2021 07:01:54 GMT + - Tue, 13 Jul 2021 08:01:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7468,23 +8308,23 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1150' + - '188' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:55 GMT + - Tue, 13 Jul 2021 08:01:55 GMT expires: - '-1' pragma: @@ -7521,23 +8361,23 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1150' + - '188' content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:56 GMT + - Tue, 13 Jul 2021 08:01:56 GMT expires: - '-1' pragma: @@ -7570,20 +8410,18 @@ 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7592,7 +8430,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:57 GMT + - Tue, 13 Jul 2021 08:01:57 GMT expires: - '-1' pragma: @@ -7629,14 +8467,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7645,7 +8483,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:01:58 GMT + - Tue, 13 Jul 2021 08:01:59 GMT expires: - '-1' pragma: @@ -7682,14 +8520,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7698,7 +8536,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:00 GMT + - Tue, 13 Jul 2021 08:02:00 GMT expires: - '-1' pragma: @@ -7735,14 +8573,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7751,7 +8589,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:01 GMT + - Tue, 13 Jul 2021 08:02:01 GMT expires: - '-1' pragma: @@ -7788,14 +8626,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7804,7 +8642,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:02 GMT + - Tue, 13 Jul 2021 08:02:02 GMT expires: - '-1' pragma: @@ -7841,14 +8679,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7857,7 +8695,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:04 GMT + - Tue, 13 Jul 2021 08:02:03 GMT expires: - '-1' pragma: @@ -7894,14 +8732,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7910,7 +8748,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:05 GMT + - Tue, 13 Jul 2021 08:02:05 GMT expires: - '-1' pragma: @@ -7947,14 +8785,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7963,7 +8801,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:06 GMT + - Tue, 13 Jul 2021 08:02:06 GMT expires: - '-1' pragma: @@ -8000,14 +8838,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8016,7 +8854,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:07 GMT + - Tue, 13 Jul 2021 08:02:07 GMT expires: - '-1' pragma: @@ -8053,14 +8891,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8069,7 +8907,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:09 GMT + - Tue, 13 Jul 2021 08:02:08 GMT expires: - '-1' pragma: @@ -8106,14 +8944,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8122,7 +8960,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:10 GMT + - Tue, 13 Jul 2021 08:02:10 GMT expires: - '-1' pragma: @@ -8159,14 +8997,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8175,7 +9013,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:11 GMT + - Tue, 13 Jul 2021 08:02:11 GMT expires: - '-1' pragma: @@ -8212,14 +9050,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8228,7 +9066,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:12 GMT + - Tue, 13 Jul 2021 08:02:12 GMT expires: - '-1' pragma: @@ -8265,14 +9103,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8281,7 +9119,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:14 GMT + - Tue, 13 Jul 2021 08:02:13 GMT expires: - '-1' pragma: @@ -8318,14 +9156,14 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8334,7 +9172,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:15 GMT + - Tue, 13 Jul 2021 08:02:14 GMT expires: - '-1' pragma: @@ -8371,23 +9209,23 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 response: body: - string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"Succeeded","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"2021-06-18T07:01:54.7653305Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8df63744-3304-4847-94c9-a58f940cd6d5"}}' + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"InProgress","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:16 GMT + - Tue, 13 Jul 2021 08:02:16 GMT expires: - '-1' pragma: @@ -8424,15 +9262,68 @@ interactions: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a343b4b-7afe-4921-86d2-1416895f8fa3?api-version=2021-01-01 + response: + body: + string: '{"id":"4a343b4b-7afe-4921-86d2-1416895f8fa3","name":"4a343b4b-7afe-4921-86d2-1416895f8fa3","status":"Succeeded","startTime":"2021-07-13T08:01:55.0964804Z","endTime":"2021-07-13T08:01:55.0964804Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"255cfdf5-4f0f-42ff-a34d-c06da0de4655"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 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: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8df63744-3304-4847-94c9-a58f940cd6d5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/255cfdf5-4f0f-42ff-a34d-c06da0de4655?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8df63744-3304-4847-94c9-a58f940cd6d5","name":"8df63744-3304-4847-94c9-a58f940cd6d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0116361S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"2021-06-18T07:02:15.7769666Z","activityId":"0f800914-d003-11eb-b6b4-00155d657312"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/255cfdf5-4f0f-42ff-a34d-c06da0de4655","name":"255cfdf5-4f0f-42ff-a34d-c06da0de4655","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.8865423S","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-07-13T08:01:55.0964804Z","endTime":"2021-07-13T08:02:16.9830227Z","activityId":"950473e4-e3b0-11eb-b2b5-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8441,7 +9332,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:17 GMT + - Tue, 13 Jul 2021 08:02:17 GMT expires: - '-1' pragma: @@ -8479,7 +9370,7 @@ interactions: - -g -v -c --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -8495,14 +9386,13 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:18 GMT + - Tue, 13 Jul 2021 08:02:18 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8512,7 +9402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -8533,7 +9423,7 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -8549,7 +9439,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:18 GMT + - Tue, 13 Jul 2021 08:02:18 GMT expires: - '-1' pragma: @@ -8588,7 +9478,7 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -8598,17 +9488,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-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/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Jun 2021 07:02:19 GMT + - Tue, 13 Jul 2021 08:02:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8633,23 +9523,21 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8657,19 +9545,21 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:19 GMT + - Tue, 13 Jul 2021 08:02:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -8690,17 +9580,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8708,11 +9598,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:20 GMT + - Tue, 13 Jul 2021 08:02: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/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -8722,7 +9612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -8743,17 +9633,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8761,11 +9651,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:22 GMT + - Tue, 13 Jul 2021 08:02:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -8775,7 +9665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: @@ -8796,17 +9686,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8814,11 +9704,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:23 GMT + - Tue, 13 Jul 2021 08:02:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -8828,7 +9718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: @@ -8849,17 +9739,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8867,11 +9757,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:24 GMT + - Tue, 13 Jul 2021 08:02:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -8881,7 +9771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '136' x-powered-by: - ASP.NET status: @@ -8902,17 +9792,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8920,11 +9810,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:25 GMT + - Tue, 13 Jul 2021 08:02:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -8934,7 +9824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '135' x-powered-by: - ASP.NET status: @@ -8955,17 +9845,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8973,11 +9863,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:26 GMT + - Tue, 13 Jul 2021 08:02: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/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -8987,7 +9877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '134' x-powered-by: - ASP.NET status: @@ -9008,17 +9898,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9026,11 +9916,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:28 GMT + - Tue, 13 Jul 2021 08:02:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9040,7 +9930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '133' x-powered-by: - ASP.NET status: @@ -9061,17 +9951,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9079,11 +9969,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:29 GMT + - Tue, 13 Jul 2021 08:02:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9093,7 +9983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '132' x-powered-by: - ASP.NET status: @@ -9114,17 +10004,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9132,11 +10022,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:30 GMT + - Tue, 13 Jul 2021 08:02:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9146,7 +10036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '131' x-powered-by: - ASP.NET status: @@ -9167,17 +10057,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9185,11 +10075,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:31 GMT + - Tue, 13 Jul 2021 08:02: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/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9199,7 +10089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '130' x-powered-by: - ASP.NET status: @@ -9220,17 +10110,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9238,11 +10128,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:33 GMT + - Tue, 13 Jul 2021 08:02:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9252,7 +10142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '129' x-powered-by: - ASP.NET status: @@ -9273,17 +10163,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9291,11 +10181,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:34 GMT + - Tue, 13 Jul 2021 08:02:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9305,7 +10195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '128' x-powered-by: - ASP.NET status: @@ -9326,17 +10216,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9344,11 +10234,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:35 GMT + - Tue, 13 Jul 2021 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/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9358,7 +10248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '127' x-powered-by: - ASP.NET status: @@ -9379,17 +10269,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9397,11 +10287,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:36 GMT + - Tue, 13 Jul 2021 08:02:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9411,7 +10301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '126' x-powered-by: - ASP.NET status: @@ -9432,17 +10322,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9450,11 +10340,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:37 GMT + - Tue, 13 Jul 2021 08:02: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/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9464,7 +10354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '125' x-powered-by: - ASP.NET status: @@ -9485,17 +10375,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9503,11 +10393,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:39 GMT + - Tue, 13 Jul 2021 08:02:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9517,7 +10407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '124' x-powered-by: - ASP.NET status: @@ -9538,17 +10428,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9556,11 +10446,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:40 GMT + - Tue, 13 Jul 2021 08:02:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9570,7 +10460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '123' x-powered-by: - ASP.NET status: @@ -9591,17 +10481,17 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9609,11 +10499,11 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:02:41 GMT + - Tue, 13 Jul 2021 08:02: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/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 pragma: - no-cache server: @@ -9623,7 +10513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '122' x-powered-by: - ASP.NET status: @@ -9644,11 +10534,11 @@ interactions: - -g -v -c --yes --backup-management-type User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e2b92322-0bf9-47cd-9fa3-9e4650d9f1f6?api-version=2021-01-01 response: body: string: '' @@ -9658,7 +10548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Jun 2021 07:02:42 GMT + - Tue, 13 Jul 2021 08:02:43 GMT expires: - '-1' pragma: @@ -9668,7 +10558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '121' x-powered-by: - ASP.NET status: @@ -9689,7 +10579,7 @@ interactions: - --backup-management-type -v -g --query User-Agent: - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9705,7 +10595,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Jun 2021 07:04:24 GMT + - Tue, 13 Jul 2021 08:04:24 GMT expires: - '-1' pragma: @@ -9721,7 +10611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -9731,7 +10621,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9743,9 +10633,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -9755,7 +10645,7 @@ interactions: content-length: - '0' date: - - Fri, 18 Jun 2021 07:04:28 GMT + - Tue, 13 Jul 2021 08:04:27 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml index c595fb07244..a171a71398c 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A25.7476247Z''\"","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-07-14T05%3A06%3A04.7391271Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:26 GMT + - Wed, 14 Jul 2021 05:06:05 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - --resource-group --account-name --query User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:31.5383479Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:31.5383479Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-14T05:06:08.6069176Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-14T05:06:08.6069176Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Wed, 14 Jul 2021 05:06:33 GMT expires: - '-1' pragma: @@ -113,12 +113,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:31.5383479Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:31.5383479Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-14T05:06:08.6069176Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-14T05:06:08.6069176Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Wed, 14 Jul 2021 05:06:33 GMT expires: - '-1' pragma: @@ -155,9 +155,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Wed, 14 Jul 2021 05:06:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -171,11 +171,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Wed, 14 Jul 2021 05:06:34 GMT etag: - - '"0x8D934AE9A4E7C73"' + - '"0x8D9468526EF5722"' last-modified: - - Mon, 21 Jun 2021 12:17:56 GMT + - Wed, 14 Jul 2021 05:06:34 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -191,11 +191,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-content-length: - '0' x-ms-date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Wed, 14 Jul 2021 05:06:34 GMT x-ms-type: - file x-ms-version: @@ -209,11 +209,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Wed, 14 Jul 2021 05:06:35 GMT etag: - - '"0x8D934AE9AA276EB"' + - '"0x8D94685274CE4A3"' last-modified: - - Mon, 21 Jun 2021 12:17:57 GMT + - Wed, 14 Jul 2021 05:06:35 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -231,11 +231,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-content-length: - '0' x-ms-date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Wed, 14 Jul 2021 05:06:35 GMT x-ms-type: - file x-ms-version: @@ -249,11 +249,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Wed, 14 Jul 2021 05:06:35 GMT etag: - - '"0x8D934AE9ADA8488"' + - '"0x8D9468527912603"' last-modified: - - Mon, 21 Jun 2021 12:17:57 GMT + - Wed, 14 Jul 2021 05:06:35 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -277,15 +277,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-14T15:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T15:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -294,7 +294,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Wed, 14 Jul 2021 05:06:35 GMT expires: - '-1' pragma: @@ -310,7 +310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -319,9 +319,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-14T15:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-14T15:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -339,15 +339,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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-item000008?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-14T15:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T15:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -356,7 +356,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Wed, 14 Jul 2021 05:06:37 GMT expires: - '-1' pragma: @@ -372,7 +372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -392,8 +392,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -409,7 +409,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Wed, 14 Jul 2021 05:06:37 GMT expires: - '-1' pragma: @@ -445,24 +445,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","name":"StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvxpkc5mxr64qsinm4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3m5mkejasm/providers/Microsoft.Storage/storageAccounts/clitestvxpkc5mxr64qsinm4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","name":"StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxwjqcdjfjsdxdfwxf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg523jlp2qto/providers/Microsoft.Storage/storageAccounts/clitestxwjqcdjfjsdxdfwxf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","name":"StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestm6eopwdgj5icqi7to","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgftuxhbxc3o/providers/Microsoft.Storage/storageAccounts/clitestm6eopwdgj5icqi7to"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","name":"StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cliteststlyhak4h5y7trjbv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj;clitest3yu3ebcqsrcelfxt2","name":"StorageContainer;Storage;clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj;clitest3yu3ebcqsrcelfxt2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3yu3ebcqsrcelfxt2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj/providers/Microsoft.Storage/storageAccounts/clitest3yu3ebcqsrcelfxt2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfv6d4za4cv;clitestuxfh3pcepjmw2xpji","name":"StorageContainer;Storage;clitest.rgfv6d4za4cv;clitestuxfh3pcepjmw2xpji","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuxfh3pcepjmw2xpji","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfv6d4za4cv/providers/Microsoft.Storage/storageAccounts/clitestuxfh3pcepjmw2xpji"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","name":"StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest75nlu7toascbktmwv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghxhxj2mma6;clitesth5ez76uhriyln47la","name":"StorageContainer;Storage;clitest.rghxhxj2mma6;clitesth5ez76uhriyln47la","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesth5ez76uhriyln47la","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghxhxj2mma6/providers/Microsoft.Storage/storageAccounts/clitesth5ez76uhriyln47la"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '7158' + - '19815' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Wed, 14 Jul 2021 05:06:38 GMT expires: - '-1' pragma: @@ -478,15 +478,648 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01&$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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 14 Jul 2021 05:06: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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/d84bc284-4ccc-4bc9-b77d-064cadf5ce0b?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Wed, 14 Jul 2021 05:06:49 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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ArchiveTestRG;arcavailtestt56tl2","name":"StorageContainer;Storage;ArchiveTestRG;arcavailtestt56tl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"arcavailtestt56tl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveTestRG/providers/Microsoft.Storage/storageAccounts/arcavailtestt56tl2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","name":"StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cliteststlyhak4h5y7trjbv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","name":"StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest75nlu7toascbktmwv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '18828' + content-type: + - application/json + date: + - Wed, 14 Jul 2021 05:06: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: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 14 Jul 2021 05:06: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/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-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 --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 14 Jul 2021 05:06: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/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 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/clitest000003"}}' + body: null headers: Accept: - application/json @@ -496,25 +1129,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -522,11 +1151,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:59 GMT + - Wed, 14 Jul 2021 05:06: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -535,8 +1164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -556,18 +1185,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -575,11 +1204,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:00 GMT + - Wed, 14 Jul 2021 05:06: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -589,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -609,18 +1238,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -628,11 +1257,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:01 GMT + - Wed, 14 Jul 2021 05: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/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -642,7 +1271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -662,18 +1291,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -681,11 +1310,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:02 GMT + - Wed, 14 Jul 2021 05:06: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -695,7 +1324,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -715,18 +1344,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -734,11 +1363,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:03 GMT + - Wed, 14 Jul 2021 05:06: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -748,7 +1377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -768,18 +1397,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -787,11 +1416,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:04 GMT + - Wed, 14 Jul 2021 05:06: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -801,7 +1430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -821,18 +1450,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -840,11 +1469,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -854,7 +1483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -874,18 +1503,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -893,11 +1522,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:07 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -907,7 +1536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '141' x-powered-by: - ASP.NET status: @@ -927,18 +1556,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -946,11 +1575,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -960,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: @@ -980,18 +1609,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -999,11 +1628,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:09 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1013,7 +1642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '139' x-powered-by: - ASP.NET status: @@ -1033,18 +1662,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1052,11 +1681,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:11 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1066,7 +1695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '138' x-powered-by: - ASP.NET status: @@ -1086,18 +1715,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1105,11 +1734,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:12 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1119,7 +1748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '137' x-powered-by: - ASP.NET status: @@ -1139,18 +1768,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1158,11 +1787,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:13 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1172,7 +1801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '136' x-powered-by: - ASP.NET status: @@ -1192,18 +1821,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1211,11 +1840,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:14 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1245,18 +1874,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1264,11 +1893,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:15 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1278,7 +1907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '134' x-powered-by: - ASP.NET status: @@ -1298,18 +1927,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1317,11 +1946,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:17 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1331,7 +1960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '133' x-powered-by: - ASP.NET status: @@ -1351,18 +1980,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1370,11 +1999,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:18 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1384,7 +2013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '132' x-powered-by: - ASP.NET status: @@ -1404,18 +2033,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1423,11 +2052,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:19 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1437,7 +2066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '131' x-powered-by: - ASP.NET status: @@ -1457,18 +2086,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1476,11 +2105,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1490,7 +2119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '130' x-powered-by: - ASP.NET status: @@ -1510,18 +2139,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1529,11 +2158,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:23 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1543,7 +2172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '129' x-powered-by: - ASP.NET status: @@ -1563,18 +2192,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1582,11 +2211,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:24 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1596,7 +2225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '128' x-powered-by: - ASP.NET status: @@ -1616,18 +2245,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1635,11 +2264,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1649,7 +2278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '127' x-powered-by: - ASP.NET status: @@ -1669,18 +2298,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1688,11 +2317,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:26 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1702,7 +2331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '126' x-powered-by: - ASP.NET status: @@ -1722,18 +2351,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1741,11 +2370,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:28 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1755,7 +2384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '125' x-powered-by: - ASP.NET status: @@ -1775,18 +2404,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1794,11 +2423,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:29 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1808,7 +2437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '124' x-powered-by: - ASP.NET status: @@ -1828,18 +2457,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1847,11 +2476,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1861,7 +2490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '123' x-powered-by: - ASP.NET status: @@ -1881,18 +2510,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1900,11 +2529,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:31 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1914,7 +2543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '122' x-powered-by: - ASP.NET status: @@ -1934,18 +2563,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1953,11 +2582,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:32 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -1967,7 +2596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '121' x-powered-by: - ASP.NET status: @@ -1987,18 +2616,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2006,11 +2635,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:34 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2020,7 +2649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '120' x-powered-by: - ASP.NET status: @@ -2040,18 +2669,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2059,11 +2688,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:35 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2073,7 +2702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '119' x-powered-by: - ASP.NET status: @@ -2093,18 +2722,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2112,11 +2741,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:37 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2126,7 +2755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '118' x-powered-by: - ASP.NET status: @@ -2146,18 +2775,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2165,11 +2794,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:38 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2179,7 +2808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '117' x-powered-by: - ASP.NET status: @@ -2199,18 +2828,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2218,11 +2847,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2232,7 +2861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '116' x-powered-by: - ASP.NET status: @@ -2252,18 +2881,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2271,11 +2900,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:40 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2285,7 +2914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '115' x-powered-by: - ASP.NET status: @@ -2305,18 +2934,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2324,11 +2953,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:42 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2338,7 +2967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '114' x-powered-by: - ASP.NET status: @@ -2358,18 +2987,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2377,11 +3006,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:43 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2391,7 +3020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '113' x-powered-by: - ASP.NET status: @@ -2411,18 +3040,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2430,11 +3059,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:44 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2444,7 +3073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '112' x-powered-by: - ASP.NET status: @@ -2464,18 +3093,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2483,11 +3112,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:46 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2497,7 +3126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '111' x-powered-by: - ASP.NET status: @@ -2517,18 +3146,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2536,11 +3165,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2550,7 +3179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '110' x-powered-by: - ASP.NET status: @@ -2570,18 +3199,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2589,11 +3218,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:48 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2603,7 +3232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '109' x-powered-by: - ASP.NET status: @@ -2623,18 +3252,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2642,11 +3271,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:49 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2656,7 +3285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '108' x-powered-by: - ASP.NET status: @@ -2676,18 +3305,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2695,11 +3324,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:51 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2709,7 +3338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '107' x-powered-by: - ASP.NET status: @@ -2729,18 +3358,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2748,11 +3377,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:52 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2762,7 +3391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '106' x-powered-by: - ASP.NET status: @@ -2782,18 +3411,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2801,11 +3430,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2815,7 +3444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '105' x-powered-by: - ASP.NET status: @@ -2835,18 +3464,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2854,11 +3483,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:54 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2868,7 +3497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '104' x-powered-by: - ASP.NET status: @@ -2888,18 +3517,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2907,11 +3536,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:55 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2921,7 +3550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '103' x-powered-by: - ASP.NET status: @@ -2941,18 +3570,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2960,11 +3589,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:57 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -2974,7 +3603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '102' x-powered-by: - ASP.NET status: @@ -2994,18 +3623,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3013,11 +3642,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:58 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3027,7 +3656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '101' x-powered-by: - ASP.NET status: @@ -3047,18 +3676,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3066,11 +3695,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:59 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3080,7 +3709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '100' x-powered-by: - ASP.NET status: @@ -3100,18 +3729,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3119,11 +3748,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:00 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3133,7 +3762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '99' x-powered-by: - ASP.NET status: @@ -3153,18 +3782,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3172,11 +3801,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3186,7 +3815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '98' x-powered-by: - ASP.NET status: @@ -3206,18 +3835,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3225,11 +3854,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:03 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3239,7 +3868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '97' x-powered-by: - ASP.NET status: @@ -3259,18 +3888,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3278,11 +3907,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:04 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3292,7 +3921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '96' x-powered-by: - ASP.NET status: @@ -3312,18 +3941,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3331,11 +3960,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:05 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3345,7 +3974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '95' x-powered-by: - ASP.NET status: @@ -3365,18 +3994,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3384,11 +4013,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:06 GMT + - Wed, 14 Jul 2021 05:07: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/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: @@ -3398,7 +4027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '94' x-powered-by: - ASP.NET status: @@ -3418,45 +4047,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/92c37d84-fb9d-41e2-b6fe-b694e4f82837?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Wed, 14 Jul 2021 05:08: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/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '93' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3471,45 +4100,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-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/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Wed, 14 Jul 2021 05:08: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/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '92' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3521,41 +4150,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3575,45 +4206,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/e022a118-edae-4faa-b6de-634b3f8edc0d?api-version=2021-01-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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:09 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '90' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3628,45 +4259,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:10 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3678,43 +4309,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-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=2021-01-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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -3734,18 +4363,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3753,11 +4382,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:13 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 pragma: - no-cache server: @@ -3767,7 +4396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -3787,18 +4416,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3806,11 +4435,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:14 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 pragma: - no-cache server: @@ -3820,7 +4449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -3840,18 +4469,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3859,11 +4488,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 pragma: - no-cache server: @@ -3873,7 +4502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '147' x-powered-by: - ASP.NET status: @@ -3893,18 +4522,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3912,11 +4541,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:17 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 pragma: - no-cache server: @@ -3926,7 +4555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '146' x-powered-by: - ASP.NET status: @@ -3946,18 +4575,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3965,11 +4594,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:18 GMT + - Wed, 14 Jul 2021 05:08: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/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 pragma: - no-cache server: @@ -3979,7 +4608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '145' x-powered-by: - ASP.NET status: @@ -3999,12 +4628,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/13ce3482-0e31-45d1-97ba-ecf6cdee75e8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d76eb2bc-13dd-4a94-b078-a28b112dff3c?api-version=2021-01-01 response: body: string: '' @@ -4014,7 +4643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:19:19 GMT + - Wed, 14 Jul 2021 05:08:12 GMT expires: - '-1' pragma: @@ -4024,7 +4653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '144' x-powered-by: - ASP.NET status: @@ -4044,15 +4673,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"azurefileshare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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: '{"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;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"azurefileshare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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 @@ -4061,7 +4690,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:20 GMT + - Wed, 14 Jul 2021 05:08:13 GMT expires: - '-1' pragma: @@ -4097,15 +4726,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-14T15:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T15:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -4114,7 +4743,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:20 GMT + - Wed, 14 Jul 2021 05:08:13 GMT expires: - '-1' pragma: @@ -4156,28 +4785,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Wed, 14 Jul 2021 05:08: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/protectedItems/azurefileshare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4185,7 +4814,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -4205,15 +4834,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4222,7 +4851,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Wed, 14 Jul 2021 05:08:14 GMT expires: - '-1' pragma: @@ -4258,15 +4887,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4275,7 +4904,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:23 GMT + - Wed, 14 Jul 2021 05:08:16 GMT expires: - '-1' pragma: @@ -4311,15 +4940,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4328,7 +4957,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:24 GMT + - Wed, 14 Jul 2021 05:08:17 GMT expires: - '-1' pragma: @@ -4364,15 +4993,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4381,7 +5010,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:25 GMT + - Wed, 14 Jul 2021 05:08:18 GMT expires: - '-1' pragma: @@ -4417,15 +5046,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4434,7 +5063,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:27 GMT + - Wed, 14 Jul 2021 05:08:19 GMT expires: - '-1' pragma: @@ -4470,15 +5099,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4487,7 +5116,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Wed, 14 Jul 2021 05:08:20 GMT expires: - '-1' pragma: @@ -4523,15 +5152,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4540,7 +5169,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Wed, 14 Jul 2021 05:08:22 GMT expires: - '-1' pragma: @@ -4576,15 +5205,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4593,7 +5222,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Wed, 14 Jul 2021 05:08:23 GMT expires: - '-1' pragma: @@ -4629,15 +5258,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4646,7 +5275,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:31 GMT + - Wed, 14 Jul 2021 05:08:24 GMT expires: - '-1' pragma: @@ -4682,15 +5311,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4699,7 +5328,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:32 GMT + - Wed, 14 Jul 2021 05:08:25 GMT expires: - '-1' pragma: @@ -4735,15 +5364,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4752,7 +5381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:34 GMT + - Wed, 14 Jul 2021 05:08:26 GMT expires: - '-1' pragma: @@ -4788,15 +5417,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4805,7 +5434,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:35 GMT + - Wed, 14 Jul 2021 05:08:28 GMT expires: - '-1' pragma: @@ -4841,15 +5470,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4858,7 +5487,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:36 GMT + - Wed, 14 Jul 2021 05:08:29 GMT expires: - '-1' pragma: @@ -4894,15 +5523,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4911,7 +5540,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:37 GMT + - Wed, 14 Jul 2021 05:08:30 GMT expires: - '-1' pragma: @@ -4947,15 +5576,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4964,7 +5593,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:38 GMT + - Wed, 14 Jul 2021 05:08:31 GMT expires: - '-1' pragma: @@ -5000,15 +5629,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5017,7 +5646,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:40 GMT + - Wed, 14 Jul 2021 05:08:32 GMT expires: - '-1' pragma: @@ -5053,15 +5682,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5070,7 +5699,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:41 GMT + - Wed, 14 Jul 2021 05:08:34 GMT expires: - '-1' pragma: @@ -5106,15 +5735,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5123,7 +5752,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:42 GMT + - Wed, 14 Jul 2021 05:08:35 GMT expires: - '-1' pragma: @@ -5159,15 +5788,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5176,7 +5805,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Wed, 14 Jul 2021 05:08:36 GMT expires: - '-1' pragma: @@ -5212,15 +5841,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5229,7 +5858,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Wed, 14 Jul 2021 05:08:37 GMT expires: - '-1' pragma: @@ -5265,15 +5894,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5282,7 +5911,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:46 GMT + - Wed, 14 Jul 2021 05:08:39 GMT expires: - '-1' pragma: @@ -5318,15 +5947,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5335,7 +5964,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:47 GMT + - Wed, 14 Jul 2021 05:08:41 GMT expires: - '-1' pragma: @@ -5371,15 +6000,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5388,7 +6017,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:48 GMT + - Wed, 14 Jul 2021 05:08:42 GMT expires: - '-1' pragma: @@ -5424,15 +6053,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5441,7 +6070,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Wed, 14 Jul 2021 05:08:43 GMT expires: - '-1' pragma: @@ -5477,15 +6106,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5494,7 +6123,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:51 GMT + - Wed, 14 Jul 2021 05:08:44 GMT expires: - '-1' pragma: @@ -5530,15 +6159,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5547,7 +6176,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Wed, 14 Jul 2021 05:08:46 GMT expires: - '-1' pragma: @@ -5583,15 +6212,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5600,7 +6229,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:53 GMT + - Wed, 14 Jul 2021 05:08:47 GMT expires: - '-1' pragma: @@ -5636,15 +6265,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5653,7 +6282,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Wed, 14 Jul 2021 05:08:48 GMT expires: - '-1' pragma: @@ -5689,15 +6318,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5706,7 +6335,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Wed, 14 Jul 2021 05:08:49 GMT expires: - '-1' pragma: @@ -5742,15 +6371,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5759,7 +6388,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:57 GMT + - Wed, 14 Jul 2021 05:08:50 GMT expires: - '-1' pragma: @@ -5795,15 +6424,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5812,7 +6441,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:58 GMT + - Wed, 14 Jul 2021 05:08:52 GMT expires: - '-1' pragma: @@ -5848,15 +6477,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5865,7 +6494,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Wed, 14 Jul 2021 05:08:53 GMT expires: - '-1' pragma: @@ -5901,15 +6530,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5918,7 +6547,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:00 GMT + - Wed, 14 Jul 2021 05:08:54 GMT expires: - '-1' pragma: @@ -5954,15 +6583,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5971,7 +6600,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Wed, 14 Jul 2021 05:08:55 GMT expires: - '-1' pragma: @@ -6007,15 +6636,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"InProgress","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"InProgress","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6024,7 +6653,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:03 GMT + - Wed, 14 Jul 2021 05:08:56 GMT expires: - '-1' pragma: @@ -6060,15 +6689,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/92e0062e-caf4-42e6-8849-2538e726b1a0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d1fcb66f-4ad1-460d-9101-c0d661244848?api-version=2021-01-01 response: body: - string: '{"id":"92e0062e-caf4-42e6-8849-2538e726b1a0","name":"92e0062e-caf4-42e6-8849-2538e726b1a0","status":"Succeeded","startTime":"2021-06-21T12:19:22.0180363Z","endTime":"2021-06-21T12:19:22.0180363Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"97d7aff7-2726-49b7-a6c0-26c4b946245a"}}' + string: '{"id":"d1fcb66f-4ad1-460d-9101-c0d661244848","name":"d1fcb66f-4ad1-460d-9101-c0d661244848","status":"Succeeded","startTime":"2021-07-14T05:08:14.5542413Z","endTime":"2021-07-14T05:08:14.5542413Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1ce04388-9e78-4489-8c3e-6bc1d832081a"}}' headers: cache-control: - no-cache @@ -6077,7 +6706,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:05 GMT + - Wed, 14 Jul 2021 05:08:58 GMT expires: - '-1' pragma: @@ -6113,17 +6742,17 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/97d7aff7-2726-49b7-a6c0-26c4b946245a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1ce04388-9e78-4489-8c3e-6bc1d832081a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/97d7aff7-2726-49b7-a6c0-26c4b946245a","name":"97d7aff7-2726-49b7-a6c0-26c4b946245a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.1287124S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1ce04388-9e78-4489-8c3e-6bc1d832081a","name":"1ce04388-9e78-4489-8c3e-6bc1d832081a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.8246223S","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-06-21T12:19:22.0180363Z","endTime":"2021-06-21T12:20:04.1467487Z","activityId":"b735128f-d28a-11eb-9cba-c8f750f92764"}}' + Name":"clitest-item000008"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-14T05:08:14.5698732Z","endTime":"2021-07-14T05:08:57.3944955Z","activityId":"44688646-e461-11eb-9e1a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6132,7 +6761,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:04 GMT + - Wed, 14 Jul 2021 05:08:58 GMT expires: - '-1' pragma: @@ -6169,15 +6798,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6186,7 +6815,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:05 GMT + - Wed, 14 Jul 2021 05:08:58 GMT expires: - '-1' pragma: @@ -6202,7 +6831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6210,7 +6839,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00:00:00.000Z"}}' + "2021-08-13T00:00:00.000Z"}}' headers: Accept: - application/json @@ -6227,41 +6856,94 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/backup?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/backup?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/53ddc35f-6cf9-4774-9e2e-37c420e14e34?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/ded1e204-cd26-437d-87b9-96bb9dca1927?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Wed, 14 Jul 2021 05:08: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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/53ddc35f-6cf9-4774-9e2e-37c420e14e34?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/ded1e204-cd26-437d-87b9-96bb9dca1927?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --backup-management-type --retain-until --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ded1e204-cd26-437d-87b9-96bb9dca1927?api-version=2021-01-01 + response: + body: + string: '{"id":"ded1e204-cd26-437d-87b9-96bb9dca1927","name":"ded1e204-cd26-437d-87b9-96bb9dca1927","status":"InProgress","startTime":"2021-07-14T05:09:00.4622293Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 14 Jul 2021 05:09: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-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: @@ -6276,15 +6958,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/53ddc35f-6cf9-4774-9e2e-37c420e14e34?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ded1e204-cd26-437d-87b9-96bb9dca1927?api-version=2021-01-01 response: body: - string: '{"id":"53ddc35f-6cf9-4774-9e2e-37c420e14e34","name":"53ddc35f-6cf9-4774-9e2e-37c420e14e34","status":"Succeeded","startTime":"2021-06-21T12:20:06.5237859Z","endTime":"2021-06-21T12:20:06.5237859Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a04b90b5-663d-4ac4-bc31-219935c25ce4"}}' + string: '{"id":"ded1e204-cd26-437d-87b9-96bb9dca1927","name":"ded1e204-cd26-437d-87b9-96bb9dca1927","status":"Succeeded","startTime":"2021-07-14T05:09:00.4622293Z","endTime":"2021-07-14T05:09:00.4622293Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"db13aa9a-787e-41f2-ab4c-efbeae648b1a"}}' headers: cache-control: - no-cache @@ -6293,7 +6975,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Wed, 14 Jul 2021 05:09:02 GMT expires: - '-1' pragma: @@ -6309,7 +6991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6329,25 +7011,25 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4","name":"a04b90b5-663d-4ac4-bc31-219935c25ce4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT0.847282S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-06-21T12:20:06.5237859Z","activityId":"02dd7d93-d28b-11eb-b920-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a","name":"db13aa9a-787e-41f2-ab4c-efbeae648b1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.6184561S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-14T05:09:00.4622293Z","activityId":"987cc5b8-e461-11eb-92a6-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '822' + - '823' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Wed, 14 Jul 2021 05:09:02 GMT expires: - '-1' pragma: @@ -6384,26 +7066,25 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4","name":"a04b90b5-663d-4ac4-bc31-219935c25ce4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4711718S","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-06-21T12:20:06.5237859Z","activityId":"02dd7d93-d28b-11eb-b920-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a","name":"db13aa9a-787e-41f2-ab4c-efbeae648b1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.1447893S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-14T05:09:00.4622293Z","activityId":"987cc5b8-e461-11eb-92a6-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '937' + - '823' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Wed, 14 Jul 2021 05:09:03 GMT expires: - '-1' pragma: @@ -6440,26 +7121,25 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4","name":"a04b90b5-663d-4ac4-bc31-219935c25ce4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.6919395S","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-06-21T12:20:06.5237859Z","activityId":"02dd7d93-d28b-11eb-b920-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a","name":"db13aa9a-787e-41f2-ab4c-efbeae648b1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.379173S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-14T05:09:00.4622293Z","activityId":"987cc5b8-e461-11eb-92a6-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '937' + - '822' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:08 GMT + - Wed, 14 Jul 2021 05:09:03 GMT expires: - '-1' pragma: @@ -6496,26 +7176,26 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04b90b5-663d-4ac4-bc31-219935c25ce4","name":"a04b90b5-663d-4ac4-bc31-219935c25ce4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.5264732S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db13aa9a-787e-41f2-ab4c-efbeae648b1a","name":"db13aa9a-787e-41f2-ab4c-efbeae648b1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT14.4803178S","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-06-21T12:20:06.5237859Z","endTime":"2021-06-21T12:20:10.0502591Z","activityId":"02dd7d93-d28b-11eb-b920-c8f750f92764"}}' + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-07-14T05:09:00.4622293Z","endTime":"2021-07-14T05:09:14.9425471Z","activityId":"987cc5b8-e461-11eb-92a6-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '976' + - '977' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:37 GMT + - Wed, 14 Jul 2021 05:09:33 GMT expires: - '-1' pragma: @@ -6554,12 +7234,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:31.5383479Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:31.5383479Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-14T05:06:08.6069176Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-14T05:06:08.6069176Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -6568,7 +7248,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:08 GMT + - Wed, 14 Jul 2021 05:10:05 GMT expires: - '-1' pragma: @@ -6584,7 +7264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' status: code: 200 message: OK @@ -6596,9 +7276,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:21:08 GMT + - Wed, 14 Jul 2021 05:10:05 GMT x-ms-share-quota: - '1' x-ms-version: @@ -6612,11 +7292,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:21:08 GMT + - Wed, 14 Jul 2021 05:10:05 GMT etag: - - '"0x8D934AF0D2638BA"' + - '"0x8D94685A540C2CD"' last-modified: - - Mon, 21 Jun 2021 12:21:09 GMT + - Wed, 14 Jul 2021 05:10:06 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -6638,15 +7318,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6655,7 +7335,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:09 GMT + - Wed, 14 Jul 2021 05:10:08 GMT expires: - '-1' pragma: @@ -6671,7 +7351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6691,24 +7371,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints/2289176445976","name":"2289176445976","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:20:07Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000007?sharesnapshot=2021-06-21T12:20:07.0000000Z","recoveryPointSizeInGB":0}}]}' + 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;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints/17585346940849","name":"17585346940849","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-14T05:09:13Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000007?sharesnapshot=2021-07-14T05:09:13.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '862' + - '864' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:09 GMT + - Wed, 14 Jul 2021 05:10:08 GMT expires: - '-1' pragma: @@ -6744,15 +7424,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6761,7 +7441,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:10 GMT + - Wed, 14 Jul 2021 05:10:09 GMT expires: - '-1' pragma: @@ -6777,7 +7457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6797,7 +7477,7 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -6813,7 +7493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:21:11 GMT + - Wed, 14 Jul 2021 05:10:09 GMT expires: - '-1' pragma: @@ -6841,12 +7521,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -6855,7 +7535,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:11 GMT + - Wed, 14 Jul 2021 05:10:09 GMT expires: - '-1' pragma: @@ -6893,28 +7573,28 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints/2289176445976/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints/17585346940849/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:21:12 GMT + - Wed, 14 Jul 2021 05:10: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/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -6942,15 +7622,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","status":"InProgress","startTime":"2021-06-21T12:21:11.9391593Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","status":"InProgress","startTime":"2021-07-14T05:10:11.5018725Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6959,7 +7639,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:12 GMT + - Wed, 14 Jul 2021 05:10:11 GMT expires: - '-1' pragma: @@ -6995,15 +7675,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","status":"Succeeded","startTime":"2021-06-21T12:21:11.9391593Z","endTime":"2021-06-21T12:21:11.9391593Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5"}}' + string: '{"id":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","status":"Succeeded","startTime":"2021-07-14T05:10:11.5018725Z","endTime":"2021-07-14T05:10:11.5018725Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ad92fd30-0b67-4f0d-8059-352ecc9431a5"}}' headers: cache-control: - no-cache @@ -7012,7 +7692,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:13 GMT + - Wed, 14 Jul 2021 05:10:12 GMT expires: - '-1' pragma: @@ -7048,19 +7728,19 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.4304998S","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.4092659S","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-06-21T12:21:11.9391593Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:10:11.5018725Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7069,7 +7749,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Wed, 14 Jul 2021 05:10:13 GMT expires: - '-1' pragma: @@ -7086,7 +7766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7106,19 +7786,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.9982162S","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.9378714S","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-06-21T12:21:11.9391593Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:10:11.5018725Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7127,7 +7807,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Wed, 14 Jul 2021 05:10:14 GMT expires: - '-1' pragma: @@ -7144,7 +7824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7164,19 +7844,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.3156211S","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.1905455S","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-06-21T12:21:11.9391593Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:10:11.5018725Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7185,7 +7865,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Wed, 14 Jul 2021 05:10:14 GMT expires: - '-1' pragma: @@ -7202,7 +7882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -7222,28 +7902,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.5772S","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.4414593S","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-06-21T12:21:11.9391593Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:10:11.5018725Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1139' + - '1142' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:44 GMT + - Wed, 14 Jul 2021 05:10:44 GMT expires: - '-1' pragma: @@ -7260,7 +7940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -7280,19 +7960,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M3.8140109S","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M3.6893022S","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-06-21T12:21:11.9391593Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:10:11.5018725Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7301,7 +7981,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:15 GMT + - Wed, 14 Jul 2021 05:11:15 GMT expires: - '-1' pragma: @@ -7318,7 +7998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -7338,28 +8018,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M9.7363664S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M8.3286035S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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-06-21T12:21:11.9391593Z","endTime":"2021-06-21T12:22:21.6755257Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:10:11.5018725Z","endTime":"2021-07-14T05:11:19.830476Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1234' + - '1232' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:45 GMT + - Wed, 14 Jul 2021 05:11:45 GMT expires: - '-1' pragma: @@ -7376,7 +8056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '145' x-powered-by: - ASP.NET status: @@ -7396,28 +8076,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad92fd30-0b67-4f0d-8059-352ecc9431a5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","name":"e4fbc5aa-fd2f-47a2-aa80-88bd868c11c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M9.7363664S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","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/ad92fd30-0b67-4f0d-8059-352ecc9431a5","name":"ad92fd30-0b67-4f0d-8059-352ecc9431a5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M8.3286035S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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-06-21T12:21:11.9391593Z","endTime":"2021-06-21T12:22:21.6755257Z","activityId":"296cac7f-d28b-11eb-bfa0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:10:11.5018725Z","endTime":"2021-07-14T05:11:19.830476Z","activityId":"c290ea86-e461-11eb-8470-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1234' + - '1232' content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:15 GMT + - Wed, 14 Jul 2021 05:12:17 GMT expires: - '-1' pragma: @@ -7434,7 +8114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '149' x-powered-by: - ASP.NET status: @@ -7455,15 +8135,15 @@ interactions: - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7472,7 +8152,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:16 GMT + - Wed, 14 Jul 2021 05:12:17 GMT expires: - '-1' pragma: @@ -7509,7 +8189,7 @@ interactions: - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account --target-file-share --target-folder User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -7525,7 +8205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:23:16 GMT + - Wed, 14 Jul 2021 05:12:18 GMT expires: - '-1' pragma: @@ -7554,12 +8234,12 @@ interactions: - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account --target-file-share --target-folder User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -7568,7 +8248,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:16 GMT + - Wed, 14 Jul 2021 05:12:18 GMT expires: - '-1' pragma: @@ -7601,7 +8281,7 @@ interactions: - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account --target-file-share --target-folder User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -7617,7 +8297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:23:17 GMT + - Wed, 14 Jul 2021 05:12:18 GMT expires: - '-1' pragma: @@ -7646,12 +8326,12 @@ interactions: - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account --target-file-share --target-folder User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -7660,7 +8340,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:18 GMT + - Wed, 14 Jul 2021 05:12:18 GMT expires: - '-1' pragma: @@ -7700,28 +8380,28 @@ interactions: - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints/2289176445976/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints/17585346940849/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:23:18 GMT + - Wed, 14 Jul 2021 05:12: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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7729,7 +8409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -7750,15 +8430,15 @@ interactions: - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","status":"InProgress","startTime":"2021-06-21T12:23:19.0617432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","status":"InProgress","startTime":"2021-07-14T05:12:20.0089281Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7767,7 +8447,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:18 GMT + - Wed, 14 Jul 2021 05:12:21 GMT expires: - '-1' pragma: @@ -7783,7 +8463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '149' x-powered-by: - ASP.NET status: @@ -7804,15 +8484,15 @@ interactions: - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","status":"Succeeded","startTime":"2021-06-21T12:23:19.0617432Z","endTime":"2021-06-21T12:23:19.0617432Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910"}}' + string: '{"id":"d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","status":"Succeeded","startTime":"2021-07-14T05:12:20.0089281Z","endTime":"2021-07-14T05:12:20.0089281Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d42ad01d-2e54-43f4-8969-792852fc819c"}}' headers: cache-control: - no-cache @@ -7821,7 +8501,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:20 GMT + - Wed, 14 Jul 2021 05:12:22 GMT expires: - '-1' pragma: @@ -7837,7 +8517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '148' x-powered-by: - ASP.NET status: @@ -7858,20 +8538,20 @@ interactions: - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.2144221S","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/d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.6306722S","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-06-21T12:23:19.0617432Z","activityId":"749df6ea-d28b-11eb-acac-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:12:20.0089281Z","activityId":"0eb4ea92-e462-11eb-b33a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7880,7 +8560,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:20 GMT + - Wed, 14 Jul 2021 05:12:23 GMT expires: - '-1' pragma: @@ -7897,7 +8577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -7917,20 +8597,20 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.6082418S","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/d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT4.2717668S","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-06-21T12:23:19.0617432Z","activityId":"749df6ea-d28b-11eb-acac-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:12:20.0089281Z","activityId":"0eb4ea92-e462-11eb-b33a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7939,7 +8619,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:20 GMT + - Wed, 14 Jul 2021 05:12:24 GMT expires: - '-1' pragma: @@ -7956,7 +8636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7976,20 +8656,20 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.8456565S","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/d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT4.5213327S","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-06-21T12:23:19.0617432Z","activityId":"749df6ea-d28b-11eb-acac-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:12:20.0089281Z","activityId":"0eb4ea92-e462-11eb-b33a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7998,7 +8678,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:21 GMT + - Wed, 14 Jul 2021 05:12:24 GMT expires: - '-1' pragma: @@ -8015,7 +8695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -8035,20 +8715,20 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.1946228S","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/d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.8161434S","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-06-21T12:23:19.0617432Z","activityId":"749df6ea-d28b-11eb-acac-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:12:20.0089281Z","activityId":"0eb4ea92-e462-11eb-b33a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8057,7 +8737,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:52 GMT + - Wed, 14 Jul 2021 05:12:54 GMT expires: - '-1' pragma: @@ -8074,7 +8754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -8094,29 +8774,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.12693S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","Target File Share Name":"clitest-item000011","Target Storage + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT36.7628786S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:23:19.0617432Z","endTime":"2021-06-21T12:23:53.1886732Z","activityId":"749df6ea-d28b-11eb-acac-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:12:20.0089281Z","endTime":"2021-07-14T05:12:56.7718067Z","activityId":"0eb4ea92-e462-11eb-b33a-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1337' + - '1338' content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:22 GMT + - Wed, 14 Jul 2021 05:13:24 GMT expires: - '-1' pragma: @@ -8133,7 +8813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -8153,29 +8833,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","name":"4ca3dee6-2ca3-48c6-b5f4-76cb7eb28910","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.12693S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","Target File Share Name":"clitest-item000011","Target Storage + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d42ad01d-2e54-43f4-8969-792852fc819c","name":"d42ad01d-2e54-43f4-8969-792852fc819c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT36.7628786S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:23:19.0617432Z","endTime":"2021-06-21T12:23:53.1886732Z","activityId":"749df6ea-d28b-11eb-acac-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:12:20.0089281Z","endTime":"2021-07-14T05:12:56.7718067Z","activityId":"0eb4ea92-e462-11eb-b33a-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1337' + - '1338' content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:53 GMT + - Wed, 14 Jul 2021 05:13:54 GMT expires: - '-1' pragma: @@ -8213,15 +8893,15 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -8230,7 +8910,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:53 GMT + - Wed, 14 Jul 2021 05:13:55 GMT expires: - '-1' pragma: @@ -8246,7 +8926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -8267,7 +8947,7 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -8283,7 +8963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:24:53 GMT + - Wed, 14 Jul 2021 05:13:55 GMT expires: - '-1' pragma: @@ -8312,12 +8992,12 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -8326,7 +9006,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:53 GMT + - Wed, 14 Jul 2021 05:13:56 GMT expires: - '-1' pragma: @@ -8359,7 +9039,7 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -8375,7 +9055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:24:55 GMT + - Wed, 14 Jul 2021 05:13:56 GMT expires: - '-1' pragma: @@ -8404,12 +9084,12 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -8418,7 +9098,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:55 GMT + - Wed, 14 Jul 2021 05:13:56 GMT expires: - '-1' pragma: @@ -8460,28 +9140,28 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints/2289176445976/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints/17585346940849/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:24:55 GMT + - Wed, 14 Jul 2021 05:13: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/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8489,7 +9169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -8510,15 +9190,15 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","status":"Succeeded","startTime":"2021-06-21T12:24:56.2044986Z","endTime":"2021-06-21T12:24:56.2044986Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4391955c-6c3e-48e4-bac2-cd27be64dab8"}}' + string: '{"id":"2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","status":"Succeeded","startTime":"2021-07-14T05:13:58.3980013Z","endTime":"2021-07-14T05:13:58.3980013Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2523a172-d743-41b9-9a62-cb7188c60565"}}' headers: cache-control: - no-cache @@ -8527,7 +9207,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:56 GMT + - Wed, 14 Jul 2021 05:13:59 GMT expires: - '-1' pragma: @@ -8543,7 +9223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '149' x-powered-by: - ASP.NET status: @@ -8564,29 +9244,24 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1.3265294S","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-06-21T12:24:56.2044986Z","activityId":"ae613a5f-d28b-11eb-b6a4-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.0891063S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:13:58.3980013Z","activityId":"495b64ca-e462-11eb-9611-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '780' content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:57 GMT + - Wed, 14 Jul 2021 05:14:00 GMT expires: - '-1' pragma: @@ -8623,20 +9298,20 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.0023779S","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/2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.6886516S","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-06-21T12:24:56.2044986Z","activityId":"ae613a5f-d28b-11eb-b6a4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:13:58.3980013Z","activityId":"495b64ca-e462-11eb-9611-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8645,7 +9320,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:58 GMT + - Wed, 14 Jul 2021 05:14:00 GMT expires: - '-1' pragma: @@ -8662,7 +9337,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -8682,29 +9357,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.131667S","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/2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.9797701S","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-06-21T12:24:56.2044986Z","activityId":"ae613a5f-d28b-11eb-b6a4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:13:58.3980013Z","activityId":"495b64ca-e462-11eb-9611-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1253' + - '1254' content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:58 GMT + - Wed, 14 Jul 2021 05:14:01 GMT expires: - '-1' pragma: @@ -8721,7 +9396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -8741,20 +9416,20 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.4268099S","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/2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.8732734S","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-06-21T12:24:56.2044986Z","activityId":"ae613a5f-d28b-11eb-b6a4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:13:58.3980013Z","activityId":"495b64ca-e462-11eb-9611-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8763,7 +9438,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:25:29 GMT + - Wed, 14 Jul 2021 05:14:31 GMT expires: - '-1' pragma: @@ -8780,7 +9455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -8800,29 +9475,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.7753278S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","Target File Share Name":"clitest-item000011","Target Storage + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT42.0974418S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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-06-21T12:24:56.2044986Z","endTime":"2021-06-21T12:25:29.9798264Z","activityId":"ae613a5f-d28b-11eb-b6a4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:13:58.3980013Z","endTime":"2021-07-14T05:14:40.4954431Z","activityId":"495b64ca-e462-11eb-9611-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1346' + - '1345' content-type: - application/json date: - - Mon, 21 Jun 2021 12:25:59 GMT + - Wed, 14 Jul 2021 05:15:02 GMT expires: - '-1' pragma: @@ -8839,7 +9514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -8859,29 +9534,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4391955c-6c3e-48e4-bac2-cd27be64dab8","name":"4391955c-6c3e-48e4-bac2-cd27be64dab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.7753278S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","Target File Share Name":"clitest-item000011","Target Storage + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2523a172-d743-41b9-9a62-cb7188c60565","name":"2523a172-d743-41b9-9a62-cb7188c60565","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT42.0974418S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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-06-21T12:24:56.2044986Z","endTime":"2021-06-21T12:25:29.9798264Z","activityId":"ae613a5f-d28b-11eb-b6a4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:13:58.3980013Z","endTime":"2021-07-14T05:14:40.4954431Z","activityId":"495b64ca-e462-11eb-9611-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1346' + - '1345' content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:30 GMT + - Wed, 14 Jul 2021 05:15:32 GMT expires: - '-1' pragma: @@ -8898,7 +9573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -8918,15 +9593,15 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -8935,7 +9610,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:30 GMT + - Wed, 14 Jul 2021 05:15:33 GMT expires: - '-1' pragma: @@ -8951,7 +9626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -8971,7 +9646,7 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -8987,7 +9662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:26:31 GMT + - Wed, 14 Jul 2021 05:15:33 GMT expires: - '-1' pragma: @@ -9015,12 +9690,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -9029,7 +9704,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:31 GMT + - Wed, 14 Jul 2021 05:15:33 GMT expires: - '-1' pragma: @@ -9068,28 +9743,28 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints/2289176445976/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints/17585346940849/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:26:32 GMT + - Wed, 14 Jul 2021 05:15: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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -9117,24 +9792,24 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","status":"Succeeded","startTime":"2021-06-21T12:26:32.020447Z","endTime":"2021-06-21T12:26:32.020447Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"699f2b73-1ca0-4b91-a66d-53916c91e777"}}' + string: '{"id":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","status":"InProgress","startTime":"2021-07-14T05:15:35.4297068Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '302' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:33 GMT + - Wed, 14 Jul 2021 05:15:35 GMT expires: - '-1' pragma: @@ -9170,28 +9845,81 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 + response: + body: + string: '{"id":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","status":"Succeeded","startTime":"2021-07-14T05:15:35.4297068Z","endTime":"2021-07-14T05:15:35.4297068Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 14 Jul 2021 05:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.3268073S","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/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.4110172S","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-06-21T12:26:32.020447Z","activityId":"e82c2051-d28b-11eb-bec0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:15:35.4297068Z","activityId":"83883710-e462-11eb-9f32-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1141' content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:33 GMT + - Wed, 14 Jul 2021 05:15:37 GMT expires: - '-1' pragma: @@ -9208,7 +9936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -9228,28 +9956,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.9309783S","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/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.8397873S","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-06-21T12:26:32.020447Z","activityId":"e82c2051-d28b-11eb-bec0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:15:35.4297068Z","activityId":"83883710-e462-11eb-9f32-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1141' content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:34 GMT + - Wed, 14 Jul 2021 05:15:38 GMT expires: - '-1' pragma: @@ -9266,7 +9994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9286,28 +10014,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.1874815S","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/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.1261138S","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-06-21T12:26:32.020447Z","activityId":"e82c2051-d28b-11eb-bec0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:15:35.4297068Z","activityId":"83883710-e462-11eb-9f32-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1141' content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:34 GMT + - Wed, 14 Jul 2021 05:15:38 GMT expires: - '-1' pragma: @@ -9324,7 +10052,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -9344,19 +10072,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.6542697S","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/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.454605S","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-06-21T12:26:32.020447Z","activityId":"e82c2051-d28b-11eb-bec0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:15:35.4297068Z","activityId":"83883710-e462-11eb-9f32-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9365,7 +10093,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:27:04 GMT + - Wed, 14 Jul 2021 05:16:08 GMT expires: - '-1' pragma: @@ -9382,7 +10110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -9402,19 +10130,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.4473559S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","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/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.9404823S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:26:32.020447Z","endTime":"2021-06-21T12:27:05.4678029Z","activityId":"e82c2051-d28b-11eb-bec0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:15:35.4297068Z","endTime":"2021-07-14T05:16:10.3701891Z","activityId":"83883710-e462-11eb-9f32-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9423,7 +10151,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:27:35 GMT + - Wed, 14 Jul 2021 05:16:38 GMT expires: - '-1' pragma: @@ -9440,7 +10168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -9460,19 +10188,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/699f2b73-1ca0-4b91-a66d-53916c91e777","name":"699f2b73-1ca0-4b91-a66d-53916c91e777","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.4473559S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","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/bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","name":"bef4a48f-47d9-4cf6-96ee-4abac1b2d9cd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.9404823S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:26:32.020447Z","endTime":"2021-06-21T12:27:05.4678029Z","activityId":"e82c2051-d28b-11eb-bec0-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:15:35.4297068Z","endTime":"2021-07-14T05:16:10.3701891Z","activityId":"83883710-e462-11eb-9f32-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9481,7 +10209,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:05 GMT + - Wed, 14 Jul 2021 05:17:09 GMT expires: - '-1' pragma: @@ -9519,15 +10247,15 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%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;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9536,7 +10264,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:06 GMT + - Wed, 14 Jul 2021 05:17:10 GMT expires: - '-1' pragma: @@ -9552,7 +10280,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -9573,7 +10301,7 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -9589,7 +10317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:28:07 GMT + - Wed, 14 Jul 2021 05:17:10 GMT expires: - '-1' pragma: @@ -9618,12 +10346,12 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -9632,7 +10360,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:07 GMT + - Wed, 14 Jul 2021 05:17:10 GMT expires: - '-1' pragma: @@ -9665,7 +10393,7 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -9681,7 +10409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:28:07 GMT + - Wed, 14 Jul 2021 05:17:11 GMT expires: - '-1' pragma: @@ -9710,12 +10438,12 @@ interactions: - -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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:31.5539535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:31.4758468Z","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-07-14T05:06:08.6225421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-14T05:06:08.5131335Z","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 @@ -9724,7 +10452,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:08 GMT + - Wed, 14 Jul 2021 05:17:11 GMT expires: - '-1' pragma: @@ -9767,28 +10495,28 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/recoveryPoints/2289176445976/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/recoveryPoints/17585346940849/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationsStatus/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationsStatus/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:28:09 GMT + - Wed, 14 Jul 2021 05:17: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/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2/operationResults/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690/operationResults/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -9796,7 +10524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -9817,24 +10545,24 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","status":"Succeeded","startTime":"2021-06-21T12:28:09.4096975Z","endTime":"2021-06-21T12:28:09.4096975Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b359a9eb-38a9-4145-b63e-0f67c0aa311e"}}' + string: '{"id":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","status":"Succeeded","startTime":"2021-07-14T05:17:12.452908Z","endTime":"2021-07-14T05:17:12.452908Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:09 GMT + - Wed, 14 Jul 2021 05:17:13 GMT expires: - '-1' pragma: @@ -9850,7 +10578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '149' x-powered-by: - ASP.NET status: @@ -9871,24 +10599,29 @@ interactions: - -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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1.614108S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:28:09.4096975Z","activityId":"218b0a5b-d28c-11eb-bd18-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1.6286683S","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-07-14T05:17:12.452908Z","activityId":"bd4052a2-e462-11eb-87ee-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '779' + - '1253' content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:10 GMT + - Wed, 14 Jul 2021 05:17:13 GMT expires: - '-1' pragma: @@ -9905,7 +10638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -9925,29 +10658,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1.9739844S","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/a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.1094788S","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-06-21T12:28:09.4096975Z","activityId":"218b0a5b-d28c-11eb-bd18-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:17:12.452908Z","activityId":"bd4052a2-e462-11eb-87ee-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '1253' content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:11 GMT + - Wed, 14 Jul 2021 05:17:14 GMT expires: - '-1' pragma: @@ -9964,7 +10697,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -9984,29 +10717,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.2585552S","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/a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.3894262S","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-06-21T12:28:09.4096975Z","activityId":"218b0a5b-d28c-11eb-bd18-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:17:12.452908Z","activityId":"bd4052a2-e462-11eb-87ee-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '1253' content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:11 GMT + - Wed, 14 Jul 2021 05:17:14 GMT expires: - '-1' pragma: @@ -10023,7 +10756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -10043,29 +10776,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT32.7325563S","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/a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT32.6717777S","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-06-21T12:28:09.4096975Z","activityId":"218b0a5b-d28c-11eb-bd18-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-14T05:17:12.452908Z","activityId":"bd4052a2-e462-11eb-87ee-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1255' + - '1254' content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:41 GMT + - Wed, 14 Jul 2021 05:17:44 GMT expires: - '-1' pragma: @@ -10082,7 +10815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '143' x-powered-by: - ASP.NET status: @@ -10102,29 +10835,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.5118205S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","Target File Share Name":"clitest-item000011","Target Storage + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.7278944S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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-06-21T12:28:09.4096975Z","endTime":"2021-06-21T12:28:42.921518Z","activityId":"218b0a5b-d28c-11eb-bd18-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:17:12.452908Z","endTime":"2021-07-14T05:17:47.1808024Z","activityId":"bd4052a2-e462-11eb-87ee-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1345' + - '1344' content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:11 GMT + - Wed, 14 Jul 2021 05:18:15 GMT expires: - '-1' pragma: @@ -10141,7 +10874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '142' x-powered-by: - ASP.NET status: @@ -10161,29 +10894,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b359a9eb-38a9-4145-b63e-0f67c0aa311e","name":"b359a9eb-38a9-4145-b63e-0f67c0aa311e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.5118205S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:08 PM","Target File Share Name":"clitest-item000011","Target Storage + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a38268dd-ab11-415c-b7d0-e1b06dc6ee03","name":"a38268dd-ab11-415c-b7d0-e1b06dc6ee03","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT34.7278944S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/14/2021 + 5:09:13 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-06-21T12:28:09.4096975Z","endTime":"2021-06-21T12:28:42.921518Z","activityId":"218b0a5b-d28c-11eb-bd18-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-14T05:17:12.452908Z","endTime":"2021-07-14T05:17:47.1808024Z","activityId":"bd4052a2-e462-11eb-87ee-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1345' + - '1344' content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:42 GMT + - Wed, 14 Jul 2021 05:18:45 GMT expires: - '-1' pragma: @@ -10220,15 +10953,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","name":"AzureFileShare;89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2","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-06-21T12:20:06.5237859Z","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","name":"AzureFileShare;aa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690","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-07-14T05:09:00.4622293Z","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -10237,7 +10970,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:44 GMT + - Wed, 14 Jul 2021 05:18:46 GMT expires: - '-1' pragma: @@ -10275,28 +11008,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B89ff2e554c29dc9367ec2bbf564866d580ea3dd3a0d7f98ad0b47fbf5ba7d2f2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baa5fbfd932a96e85fffd4e2f91bb5df8834b0f18c5d9d00388de9c6235e98690?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:29:45 GMT + - Wed, 14 Jul 2021 05: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/backupOperationResults/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -10324,15 +11057,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10341,7 +11074,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:46 GMT + - Wed, 14 Jul 2021 05:18:47 GMT expires: - '-1' pragma: @@ -10357,7 +11090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -10377,15 +11110,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10394,7 +11127,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:48 GMT + - Wed, 14 Jul 2021 05:18:48 GMT expires: - '-1' pragma: @@ -10410,7 +11143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -10430,15 +11163,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10447,7 +11180,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:49 GMT + - Wed, 14 Jul 2021 05:18:50 GMT expires: - '-1' pragma: @@ -10463,7 +11196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: @@ -10483,15 +11216,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10500,7 +11233,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:50 GMT + - Wed, 14 Jul 2021 05:18:51 GMT expires: - '-1' pragma: @@ -10516,7 +11249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '145' x-powered-by: - ASP.NET status: @@ -10536,15 +11269,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10553,7 +11286,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:51 GMT + - Wed, 14 Jul 2021 05:18:52 GMT expires: - '-1' pragma: @@ -10569,7 +11302,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '144' x-powered-by: - ASP.NET status: @@ -10589,15 +11322,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10606,7 +11339,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:53 GMT + - Wed, 14 Jul 2021 05:18:53 GMT expires: - '-1' pragma: @@ -10622,7 +11355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '143' x-powered-by: - ASP.NET status: @@ -10642,15 +11375,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10659,7 +11392,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:54 GMT + - Wed, 14 Jul 2021 05:18:54 GMT expires: - '-1' pragma: @@ -10675,7 +11408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '142' x-powered-by: - ASP.NET status: @@ -10695,15 +11428,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10712,7 +11445,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:55 GMT + - Wed, 14 Jul 2021 05:18:56 GMT expires: - '-1' pragma: @@ -10728,7 +11461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '141' x-powered-by: - ASP.NET status: @@ -10748,15 +11481,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10765,7 +11498,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:56 GMT + - Wed, 14 Jul 2021 05:18:58 GMT expires: - '-1' pragma: @@ -10781,7 +11514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '140' x-powered-by: - ASP.NET status: @@ -10801,15 +11534,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10818,7 +11551,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:58 GMT + - Wed, 14 Jul 2021 05:18:59 GMT expires: - '-1' pragma: @@ -10834,7 +11567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '139' x-powered-by: - ASP.NET status: @@ -10854,15 +11587,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10871,7 +11604,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:59 GMT + - Wed, 14 Jul 2021 05:19:00 GMT expires: - '-1' pragma: @@ -10887,7 +11620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '138' x-powered-by: - ASP.NET status: @@ -10907,15 +11640,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10924,7 +11657,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:01 GMT + - Wed, 14 Jul 2021 05:19:02 GMT expires: - '-1' pragma: @@ -10940,7 +11673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '137' x-powered-by: - ASP.NET status: @@ -10960,15 +11693,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10977,7 +11710,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:02 GMT + - Wed, 14 Jul 2021 05:19:03 GMT expires: - '-1' pragma: @@ -10993,7 +11726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '136' x-powered-by: - ASP.NET status: @@ -11013,15 +11746,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11030,7 +11763,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:03 GMT + - Wed, 14 Jul 2021 05:19:04 GMT expires: - '-1' pragma: @@ -11046,7 +11779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '135' x-powered-by: - ASP.NET status: @@ -11066,15 +11799,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11083,7 +11816,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:04 GMT + - Wed, 14 Jul 2021 05:19:05 GMT expires: - '-1' pragma: @@ -11099,7 +11832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '134' x-powered-by: - ASP.NET status: @@ -11119,15 +11852,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11136,7 +11869,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:05 GMT + - Wed, 14 Jul 2021 05:19:06 GMT expires: - '-1' pragma: @@ -11152,7 +11885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '133' x-powered-by: - ASP.NET status: @@ -11172,15 +11905,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"InProgress","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"InProgress","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11189,7 +11922,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:07 GMT + - Wed, 14 Jul 2021 05:19:08 GMT expires: - '-1' pragma: @@ -11205,7 +11938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '132' x-powered-by: - ASP.NET status: @@ -11225,15 +11958,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7bc9073b-a3b7-4e40-9671-72a2b0e8ea42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a71cf12-3f8f-48f1-9cb9-4ad8284ce445?api-version=2021-01-01 response: body: - string: '{"id":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","name":"7bc9073b-a3b7-4e40-9671-72a2b0e8ea42","status":"Succeeded","startTime":"2021-06-21T12:29:46.0856768Z","endTime":"2021-06-21T12:29:46.0856768Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3eb918b7-3f89-4fb0-9457-41bd030d907e"}}' + string: '{"id":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","name":"9a71cf12-3f8f-48f1-9cb9-4ad8284ce445","status":"Succeeded","startTime":"2021-07-14T05:18:47.5800899Z","endTime":"2021-07-14T05:18:47.5800899Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8ef5b308-cca6-4e0d-b009-66376f551ab8"}}' headers: cache-control: - no-cache @@ -11242,7 +11975,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:08 GMT + - Wed, 14 Jul 2021 05:19:09 GMT expires: - '-1' pragma: @@ -11258,7 +11991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '131' x-powered-by: - ASP.NET status: @@ -11278,16 +12011,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3eb918b7-3f89-4fb0-9457-41bd030d907e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8ef5b308-cca6-4e0d-b009-66376f551ab8?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3eb918b7-3f89-4fb0-9457-41bd030d907e","name":"3eb918b7-3f89-4fb0-9457-41bd030d907e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT22.2854012S","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-06-21T12:29:46.0856768Z","endTime":"2021-06-21T12:30:08.371078Z","activityId":"5b5311ae-d28c-11eb-a35b-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8ef5b308-cca6-4e0d-b009-66376f551ab8","name":"8ef5b308-cca6-4e0d-b009-66376f551ab8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.8407351S","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-07-14T05:18:47.5800899Z","endTime":"2021-07-14T05:19:09.420825Z","activityId":"f67fc700-e462-11eb-b137-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11296,7 +12029,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:08 GMT + - Wed, 14 Jul 2021 05:19:10 GMT expires: - '-1' pragma: @@ -11313,7 +12046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -11333,8 +12066,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11350,7 +12083,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:10 GMT + - Wed, 14 Jul 2021 05:19:11 GMT expires: - '-1' pragma: @@ -11388,8 +12121,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -11399,17 +12132,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-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/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:30:10 GMT + - Wed, 14 Jul 2021 05:19:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/f2636f56-9aa7-466d-a461-f1991da1419a?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -11437,18 +12170,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11456,11 +12189,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:11 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11490,18 +12223,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11509,11 +12242,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:12 GMT + - Wed, 14 Jul 2021 05:19:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11543,18 +12276,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11562,11 +12295,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:13 GMT + - Wed, 14 Jul 2021 05:19:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11596,18 +12329,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11615,11 +12348,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:14 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11649,18 +12382,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11668,11 +12401,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:16 GMT + - Wed, 14 Jul 2021 05:19:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11702,18 +12435,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11721,11 +12454,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:17 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11755,18 +12488,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11774,11 +12507,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:18 GMT + - Wed, 14 Jul 2021 05:19:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11808,18 +12541,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11827,11 +12560,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:19 GMT + - Wed, 14 Jul 2021 05:19:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11861,18 +12594,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11880,11 +12613,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:21 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11914,18 +12647,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11933,11 +12666,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:22 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -11967,18 +12700,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11986,11 +12719,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:23 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12020,18 +12753,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12039,11 +12772,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:24 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12073,18 +12806,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12092,11 +12825,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:26 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12126,18 +12859,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12145,11 +12878,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:27 GMT + - Wed, 14 Jul 2021 05:19:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12179,18 +12912,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12198,11 +12931,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:28 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12232,18 +12965,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12251,11 +12984,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:29 GMT + - Wed, 14 Jul 2021 05:19:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12285,18 +13018,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12304,11 +13037,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:31 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12338,18 +13071,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12357,11 +13090,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:32 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12391,18 +13124,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12410,11 +13143,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:33 GMT + - Wed, 14 Jul 2021 05:19: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/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 pragma: - no-cache server: @@ -12444,12 +13177,65 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 14 Jul 2021 05:19: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/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f2636f56-9aa7-466d-a461-f1991da1419a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa1defaf-ef63-44c4-8f87-1a645a5c48e4?api-version=2021-01-01 response: body: string: '' @@ -12459,7 +13245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:30:34 GMT + - Wed, 14 Jul 2021 05:19:36 GMT expires: - '-1' pragma: @@ -12469,7 +13255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '129' x-powered-by: - ASP.NET status: @@ -12489,8 +13275,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -12506,7 +13292,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:16 GMT + - Wed, 14 Jul 2021 05:21:16 GMT expires: - '-1' pragma: @@ -12532,7 +13318,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -12544,9 +13330,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -12556,7 +13342,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:32:26 GMT + - Wed, 14 Jul 2021 05:21:20 GMT expires: - '-1' pragma: @@ -12570,4 +13356,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 82b85abcd19..91d0f72ebbf 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A26.4342754Z''\"","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-07-13T12%3A36%3A01.7160304Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:26 GMT + - Tue, 13 Jul 2021 12:36:01 GMT expires: - '-1' pragma: @@ -43,7 +43,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '207' + - '209' status: code: 201 message: Created @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:29.7258257Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:29.7258257Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T12:36:03.3919883Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T12:36:03.3919883Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:23 GMT expires: - '-1' pragma: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' status: code: 200 message: OK @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:23 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 12:36:24 GMT etag: - - '"0x8D934AE971BCCC3"' + - '"0x8D945FAD43168B7"' last-modified: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 12:36:25 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -147,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -164,7 +164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:25 GMT expires: - '-1' pragma: @@ -189,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T22:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T22:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -209,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 12:36:26 GMT expires: - '-1' pragma: @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 12:36:27 GMT expires: - '-1' pragma: @@ -315,24 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2ip7fgbyx6;clitest5hxuss6k7h7kn32qg","name":"StorageContainer;Storage;clitest.rg2ip7fgbyx6;clitest5hxuss6k7h7kn32qg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest5hxuss6k7h7kn32qg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ip7fgbyx6/providers/Microsoft.Storage/storageAccounts/clitest5hxuss6k7h7kn32qg"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","name":"StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cliteststlyhak4h5y7trjbv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","name":"StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest75nlu7toascbktmwv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '777' + - '18826' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 12:36:28 GMT expires: - '-1' pragma: @@ -370,8 +370,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -381,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/0c8087b3-e152-4376-9960-f915562cf443?api-version=2019-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/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -419,12 +419,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -434,11 +434,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -466,12 +466,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -481,11 +481,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -513,12 +513,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -528,11 +528,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -560,12 +560,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -575,11 +575,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -607,12 +607,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -622,11 +622,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -654,12 +654,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -669,11 +669,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:00 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -701,12 +701,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -716,11 +716,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:01 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -748,12 +748,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -763,11 +763,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:02 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -795,12 +795,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -810,11 +810,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:03 GMT + - Tue, 13 Jul 2021 12:36: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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -842,12 +842,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/0c8087b3-e152-4376-9960-f915562cf443?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cbac999b-39a3-4059-ace3-3f97db8a2370?api-version=2021-01-01 response: body: string: '' @@ -855,7 +855,7 @@ interactions: cache-control: - no-cache date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Tue, 13 Jul 2021 12:36:41 GMT expires: - '-1' pragma: @@ -885,24 +885,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","name":"StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvxpkc5mxr64qsinm4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3m5mkejasm/providers/Microsoft.Storage/storageAccounts/clitestvxpkc5mxr64qsinm4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","name":"StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestm6eopwdgj5icqi7to","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgftuxhbxc3o/providers/Microsoft.Storage/storageAccounts/clitestm6eopwdgj5icqi7to"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","name":"StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cliteststlyhak4h5y7trjbv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj;clitest3yu3ebcqsrcelfxt2","name":"StorageContainer;Storage;clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj;clitest3yu3ebcqsrcelfxt2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3yu3ebcqsrcelfxt2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj/providers/Microsoft.Storage/storageAccounts/clitest3yu3ebcqsrcelfxt2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfv6d4za4cv;clitestuxfh3pcepjmw2xpji","name":"StorageContainer;Storage;clitest.rgfv6d4za4cv;clitestuxfh3pcepjmw2xpji","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuxfh3pcepjmw2xpji","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfv6d4za4cv/providers/Microsoft.Storage/storageAccounts/clitestuxfh3pcepjmw2xpji"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","name":"StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest75nlu7toascbktmwv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '6381' + - '19815' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Tue, 13 Jul 2021 12:36:41 GMT expires: - '-1' pragma: @@ -943,8 +943,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -954,7 +954,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -962,11 +962,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -996,18 +996,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1015,11 +1015,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1049,18 +1049,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1068,11 +1068,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:07 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1102,18 +1102,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1121,11 +1121,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1155,18 +1155,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1174,11 +1174,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:10 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1208,18 +1208,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1227,11 +1227,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:11 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1261,18 +1261,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1280,11 +1280,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:12 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1314,18 +1314,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1333,11 +1333,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:13 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1367,18 +1367,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1386,11 +1386,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:15 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1420,18 +1420,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1439,11 +1439,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:16 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1473,18 +1473,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1492,11 +1492,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:17 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1526,18 +1526,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1545,11 +1545,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:18 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1579,18 +1579,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1598,11 +1598,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:20 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1632,18 +1632,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1651,11 +1651,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1685,18 +1685,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1704,11 +1704,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:22 GMT + - Tue, 13 Jul 2021 12:36: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1738,18 +1738,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1757,11 +1757,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:23 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1791,18 +1791,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1810,11 +1810,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1844,18 +1844,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1863,11 +1863,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:26 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1897,18 +1897,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1916,11 +1916,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:27 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -1950,18 +1950,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1969,11 +1969,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:28 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2003,18 +2003,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2022,11 +2022,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2056,18 +2056,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2075,11 +2075,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:32 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2109,18 +2109,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2128,11 +2128,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:33 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2162,18 +2162,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2181,11 +2181,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:34 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2215,18 +2215,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2234,11 +2234,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:36 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2268,18 +2268,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2287,11 +2287,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:37 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2321,18 +2321,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2340,11 +2340,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:38 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2374,18 +2374,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2393,11 +2393,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2427,18 +2427,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2446,11 +2446,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:41 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2480,18 +2480,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2499,11 +2499,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:42 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2533,18 +2533,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2552,11 +2552,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:43 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2586,18 +2586,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2605,11 +2605,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:44 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2639,18 +2639,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2658,11 +2658,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:46 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2692,18 +2692,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2711,11 +2711,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2745,18 +2745,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2764,11 +2764,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:48 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2798,18 +2798,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2817,11 +2817,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:49 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2851,18 +2851,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2870,11 +2870,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:51 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2904,18 +2904,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2923,11 +2923,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:52 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -2957,18 +2957,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2976,11 +2976,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3010,18 +3010,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3029,11 +3029,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:54 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3063,18 +3063,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3082,11 +3082,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:56 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3116,18 +3116,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3135,11 +3135,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:57 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3169,18 +3169,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3188,11 +3188,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:58 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3222,18 +3222,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3241,11 +3241,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:59 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3275,18 +3275,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3294,11 +3294,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3328,18 +3328,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3347,11 +3347,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:02 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3381,18 +3381,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3400,11 +3400,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:03 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3434,18 +3434,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3453,11 +3453,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:04 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3487,18 +3487,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3506,11 +3506,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:06 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3540,18 +3540,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3559,11 +3559,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3593,18 +3593,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3612,11 +3612,64 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:37: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/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3646,18 +3699,71 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:37: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/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + 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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3665,11 +3771,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:09 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3699,18 +3805,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3718,11 +3824,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:11 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3732,7 +3838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '96' x-powered-by: - ASP.NET status: @@ -3752,18 +3858,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3771,11 +3877,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3785,7 +3891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '95' x-powered-by: - ASP.NET status: @@ -3805,18 +3911,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3824,11 +3930,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:13 GMT + - Tue, 13 Jul 2021 12:37: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/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 pragma: - no-cache server: @@ -3838,7 +3944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '94' x-powered-by: - ASP.NET status: @@ -3858,12 +3964,65 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5456fd8b-615f-4707-a504-caf5fd5b3a5f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:37: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/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/72bf018b-2929-44f9-acfc-1cfe11375ba8?api-version=2021-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' @@ -3875,7 +4034,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:14 GMT + - Tue, 13 Jul 2021 12:37:53 GMT expires: - '-1' pragma: @@ -3891,7 +4050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '92' x-powered-by: - ASP.NET status: @@ -3911,8 +4070,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -3928,7 +4087,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Tue, 13 Jul 2021 12:37:54 GMT expires: - '-1' pragma: @@ -3944,7 +4103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3966,8 +4125,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -3977,17 +4136,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Tue, 13 Jul 2021 12:37: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/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -3995,7 +4154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -4015,18 +4174,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4034,11 +4193,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:16 GMT + - Tue, 13 Jul 2021 12:37: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/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 pragma: - no-cache server: @@ -4068,18 +4227,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4087,11 +4246,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:17 GMT + - Tue, 13 Jul 2021 12:37: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/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 pragma: - no-cache server: @@ -4121,18 +4280,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4140,11 +4299,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:18 GMT + - Tue, 13 Jul 2021 12:37: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/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 pragma: - no-cache server: @@ -4174,18 +4333,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4193,11 +4352,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:20 GMT + - Tue, 13 Jul 2021 12:37: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/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 pragma: - no-cache server: @@ -4227,18 +4386,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4246,11 +4405,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 12:37: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/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 pragma: - no-cache server: @@ -4280,12 +4439,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0eaf097d-421a-43e6-8bfc-38f5ceab7876?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57009058-0118-47d8-ab3a-21f8d8796f0e?api-version=2021-01-01 response: body: string: '' @@ -4295,7 +4454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 12:38:01 GMT expires: - '-1' pragma: @@ -4325,15 +4484,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"azurefileshare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"azurefileshare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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 @@ -4342,7 +4501,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 12:38:01 GMT expires: - '-1' pragma: @@ -4358,7 +4517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4378,15 +4537,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -4395,7 +4554,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:23 GMT + - Tue, 13 Jul 2021 12:38:02 GMT expires: - '-1' pragma: @@ -4411,7 +4570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4437,28 +4596,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/operationsStatus/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/operationsStatus/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:19:24 GMT + - Tue, 13 Jul 2021 12:38: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;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/operationResults/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/operationResults/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4486,15 +4645,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4503,7 +4662,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:25 GMT + - Tue, 13 Jul 2021 12:38:03 GMT expires: - '-1' pragma: @@ -4539,15 +4698,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4556,7 +4715,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:26 GMT + - Tue, 13 Jul 2021 12:38:04 GMT expires: - '-1' pragma: @@ -4592,15 +4751,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4609,7 +4768,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:27 GMT + - Tue, 13 Jul 2021 12:38:06 GMT expires: - '-1' pragma: @@ -4645,15 +4804,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4662,7 +4821,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 12:38:07 GMT expires: - '-1' pragma: @@ -4698,15 +4857,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4715,7 +4874,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Tue, 13 Jul 2021 12:38:08 GMT expires: - '-1' pragma: @@ -4751,15 +4910,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4768,7 +4927,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:31 GMT + - Tue, 13 Jul 2021 12:38:09 GMT expires: - '-1' pragma: @@ -4804,15 +4963,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4821,7 +4980,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:32 GMT + - Tue, 13 Jul 2021 12:38:10 GMT expires: - '-1' pragma: @@ -4857,15 +5016,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4874,7 +5033,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:33 GMT + - Tue, 13 Jul 2021 12:38:12 GMT expires: - '-1' pragma: @@ -4910,15 +5069,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4927,7 +5086,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:35 GMT + - Tue, 13 Jul 2021 12:38:13 GMT expires: - '-1' pragma: @@ -4963,15 +5122,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4980,7 +5139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:36 GMT + - Tue, 13 Jul 2021 12:38:14 GMT expires: - '-1' pragma: @@ -5016,15 +5175,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5033,7 +5192,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:37 GMT + - Tue, 13 Jul 2021 12:38:15 GMT expires: - '-1' pragma: @@ -5069,15 +5228,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5086,7 +5245,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:38 GMT + - Tue, 13 Jul 2021 12:38:16 GMT expires: - '-1' pragma: @@ -5122,15 +5281,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5139,7 +5298,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:39 GMT + - Tue, 13 Jul 2021 12:38:18 GMT expires: - '-1' pragma: @@ -5175,15 +5334,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5192,7 +5351,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:41 GMT + - Tue, 13 Jul 2021 12:38:19 GMT expires: - '-1' pragma: @@ -5228,15 +5387,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5245,7 +5404,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:42 GMT + - Tue, 13 Jul 2021 12:38:20 GMT expires: - '-1' pragma: @@ -5281,15 +5440,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5298,7 +5457,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Tue, 13 Jul 2021 12:38:21 GMT expires: - '-1' pragma: @@ -5334,15 +5493,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5351,7 +5510,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:44 GMT + - Tue, 13 Jul 2021 12:38:22 GMT expires: - '-1' pragma: @@ -5387,15 +5546,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5404,7 +5563,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Tue, 13 Jul 2021 12:38:24 GMT expires: - '-1' pragma: @@ -5440,15 +5599,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5457,7 +5616,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:47 GMT + - Tue, 13 Jul 2021 12:38:25 GMT expires: - '-1' pragma: @@ -5493,15 +5652,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5510,7 +5669,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:48 GMT + - Tue, 13 Jul 2021 12:38:26 GMT expires: - '-1' pragma: @@ -5546,15 +5705,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5563,7 +5722,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Tue, 13 Jul 2021 12:38:27 GMT expires: - '-1' pragma: @@ -5599,15 +5758,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5616,7 +5775,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:50 GMT + - Tue, 13 Jul 2021 12:38:28 GMT expires: - '-1' pragma: @@ -5652,15 +5811,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5669,7 +5828,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Tue, 13 Jul 2021 12:38:30 GMT expires: - '-1' pragma: @@ -5705,15 +5864,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5722,7 +5881,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:53 GMT + - Tue, 13 Jul 2021 12:38:31 GMT expires: - '-1' pragma: @@ -5758,15 +5917,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5775,7 +5934,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Tue, 13 Jul 2021 12:38:32 GMT expires: - '-1' pragma: @@ -5811,15 +5970,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5828,7 +5987,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Tue, 13 Jul 2021 12:38:33 GMT expires: - '-1' pragma: @@ -5864,15 +6023,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5881,7 +6040,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:57 GMT + - Tue, 13 Jul 2021 12:38:35 GMT expires: - '-1' pragma: @@ -5917,15 +6076,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5934,7 +6093,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:58 GMT + - Tue, 13 Jul 2021 12:38:36 GMT expires: - '-1' pragma: @@ -5970,15 +6129,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5987,7 +6146,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Tue, 13 Jul 2021 12:38:37 GMT expires: - '-1' pragma: @@ -6023,15 +6182,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6040,7 +6199,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Tue, 13 Jul 2021 12:38:38 GMT expires: - '-1' pragma: @@ -6076,15 +6235,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6093,7 +6252,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:02 GMT + - Tue, 13 Jul 2021 12:38:39 GMT expires: - '-1' pragma: @@ -6129,15 +6288,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6146,7 +6305,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:03 GMT + - Tue, 13 Jul 2021 12:38:40 GMT expires: - '-1' pragma: @@ -6182,15 +6341,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6199,7 +6358,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:04 GMT + - Tue, 13 Jul 2021 12:38:42 GMT expires: - '-1' pragma: @@ -6235,15 +6394,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6252,7 +6411,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Tue, 13 Jul 2021 12:38:43 GMT expires: - '-1' pragma: @@ -6288,15 +6447,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"InProgress","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"InProgress","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6305,7 +6464,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Tue, 13 Jul 2021 12:38:44 GMT expires: - '-1' pragma: @@ -6341,15 +6500,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/916c8092-f74d-4700-a845-a396faa1536a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59dece32-41e3-4c95-8740-02900c6687a4?api-version=2021-01-01 response: body: - string: '{"id":"916c8092-f74d-4700-a845-a396faa1536a","name":"916c8092-f74d-4700-a845-a396faa1536a","status":"Succeeded","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"2021-06-21T12:19:25.0992721Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"739061b3-a1e7-4fe9-81dd-cb95be95b8fc"}}' + string: '{"id":"59dece32-41e3-4c95-8740-02900c6687a4","name":"59dece32-41e3-4c95-8740-02900c6687a4","status":"Succeeded","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"2021-07-13T12:38:03.1107454Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3291af88-96e5-4a86-adb6-9656a80dd550"}}' headers: cache-control: - no-cache @@ -6358,7 +6517,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:08 GMT + - Tue, 13 Jul 2021 12:38:45 GMT expires: - '-1' pragma: @@ -6394,17 +6553,17 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/739061b3-a1e7-4fe9-81dd-cb95be95b8fc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3291af88-96e5-4a86-adb6-9656a80dd550?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/739061b3-a1e7-4fe9-81dd-cb95be95b8fc","name":"739061b3-a1e7-4fe9-81dd-cb95be95b8fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.9926975S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3291af88-96e5-4a86-adb6-9656a80dd550","name":"3291af88-96e5-4a86-adb6-9656a80dd550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.3728115S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:19:25.0992721Z","endTime":"2021-06-21T12:20:08.0919696Z","activityId":"b392522b-d28a-11eb-9eeb-c8f750f92764"}}' + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T12:38:03.1107454Z","endTime":"2021-07-13T12:38:45.4835569Z","activityId":"eff885b6-e3d6-11eb-8c18-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6413,7 +6572,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:09 GMT + - Tue, 13 Jul 2021 12:38:46 GMT expires: - '-1' pragma: @@ -6430,7 +6589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: @@ -6450,15 +6609,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6467,7 +6626,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:10 GMT + - Tue, 13 Jul 2021 12:38:46 GMT expires: - '-1' pragma: @@ -6483,7 +6642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6491,7 +6650,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00:00:00.000Z"}}' + "2021-08-12T00:00:00.000Z"}}' headers: Accept: - application/json @@ -6508,28 +6667,28 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/backup?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/backup?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/operationsStatus/6201853a-51a2-40fe-b932-de2e55d9745a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/operationsStatus/7104d872-bc8e-41a5-891e-52e272326181?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:20:10 GMT + - Tue, 13 Jul 2021 12:38: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;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/operationResults/6201853a-51a2-40fe-b932-de2e55d9745a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/operationResults/7104d872-bc8e-41a5-891e-52e272326181?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -6557,24 +6716,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6201853a-51a2-40fe-b932-de2e55d9745a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7104d872-bc8e-41a5-891e-52e272326181?api-version=2021-01-01 response: body: - string: '{"id":"6201853a-51a2-40fe-b932-de2e55d9745a","name":"6201853a-51a2-40fe-b932-de2e55d9745a","status":"Succeeded","startTime":"2021-06-21T12:20:11.0007664Z","endTime":"2021-06-21T12:20:11.0007664Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"81c29fca-d7a7-4504-883b-991b2767981c"}}' + string: '{"id":"7104d872-bc8e-41a5-891e-52e272326181","name":"7104d872-bc8e-41a5-891e-52e272326181","status":"InProgress","startTime":"2021-07-13T12:38:47.9157996Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:11 GMT + - Tue, 13 Jul 2021 12:38:48 GMT expires: - '-1' pragma: @@ -6610,17 +6769,70 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7104d872-bc8e-41a5-891e-52e272326181?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c","name":"81c29fca-d7a7-4504-883b-991b2767981c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.065623S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"7104d872-bc8e-41a5-891e-52e272326181","name":"7104d872-bc8e-41a5-891e-52e272326181","status":"Succeeded","startTime":"2021-07-13T12:38:47.9157996Z","endTime":"2021-07-13T12:38:47.9157996Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e90ee7e1-5903-41eb-b906-620e016e4f1b"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:38: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: + - '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: + - -g -v -i -c --backup-management-type --retain-until --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b","name":"e90ee7e1-5903-41eb-b906-620e016e4f1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.553251S","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-06-21T12:20:11.0007664Z","activityId":"057792ee-d28b-11eb-bde8-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:38:47.9157996Z","activityId":"43496858-e3d7-11eb-a05d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6629,7 +6841,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:11 GMT + - Tue, 13 Jul 2021 12:38:49 GMT expires: - '-1' pragma: @@ -6666,17 +6878,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c","name":"81c29fca-d7a7-4504-883b-991b2767981c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4494429S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b","name":"e90ee7e1-5903-41eb-b906-620e016e4f1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.2109202S","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-06-21T12:20:11.0007664Z","activityId":"057792ee-d28b-11eb-bde8-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:38:47.9157996Z","activityId":"43496858-e3d7-11eb-a05d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6685,7 +6897,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Tue, 13 Jul 2021 12:38:50 GMT expires: - '-1' pragma: @@ -6702,7 +6914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6722,17 +6934,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c","name":"81c29fca-d7a7-4504-883b-991b2767981c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.6874644S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b","name":"e90ee7e1-5903-41eb-b906-620e016e4f1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.4439169S","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-06-21T12:20:11.0007664Z","activityId":"057792ee-d28b-11eb-bde8-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:38:47.9157996Z","activityId":"43496858-e3d7-11eb-a05d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6741,7 +6953,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Tue, 13 Jul 2021 12:38:50 GMT expires: - '-1' pragma: @@ -6758,7 +6970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -6778,26 +6990,26 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/81c29fca-d7a7-4504-883b-991b2767981c","name":"81c29fca-d7a7-4504-883b-991b2767981c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.7720936S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e90ee7e1-5903-41eb-b906-620e016e4f1b","name":"e90ee7e1-5903-41eb-b906-620e016e4f1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.2412068S","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-06-21T12:20:11.0007664Z","endTime":"2021-06-21T12:20:13.77286Z","activityId":"057792ee-d28b-11eb-bde8-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-07-13T12:38:47.9157996Z","endTime":"2021-07-13T12:38:51.1570064Z","activityId":"43496858-e3d7-11eb-a05d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '974' + - '976' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:42 GMT + - Tue, 13 Jul 2021 12:39:21 GMT expires: - '-1' pragma: @@ -6814,7 +7026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '147' x-powered-by: - ASP.NET status: @@ -6834,15 +7046,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","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-06-21T12:20:11.0007664Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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-07-13T12:38:47.9157996Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6851,7 +7063,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:12 GMT + - Tue, 13 Jul 2021 12:39:52 GMT expires: - '-1' pragma: @@ -6887,15 +7099,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints/69106515143131","name":"69106515143131","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:20:11Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-06-21T12:20:11.0000000Z","recoveryPointSizeInGB":0}}]}' + 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;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints/16717502079079","name":"16717502079079","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-13T12:38:49Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-07-13T12:38:49.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache @@ -6904,7 +7116,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:13 GMT + - Tue, 13 Jul 2021 12:39:53 GMT expires: - '-1' pragma: @@ -6920,7 +7132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6940,15 +7152,15 @@ interactions: ParameterSetName: - -g -v -c -i -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","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-06-21T12:20:11.0007664Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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-07-13T12:38:47.9157996Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6957,7 +7169,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:13 GMT + - Tue, 13 Jul 2021 12:39:53 GMT expires: - '-1' pragma: @@ -6973,7 +7185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6993,15 +7205,15 @@ interactions: ParameterSetName: - -g -v -c -i -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints/69106515143131?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints/16717502079079?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints/69106515143131","name":"69106515143131","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:20:11Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-06-21T12:20:11.0000000Z","recoveryPointSizeInGB":0}}' + 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;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints/16717502079079","name":"16717502079079","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-13T12:38:49Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-07-13T12:38:49.0000000Z","recoveryPointSizeInGB":0}}' headers: cache-control: - no-cache @@ -7010,7 +7222,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Tue, 13 Jul 2021 12:39:54 GMT expires: - '-1' pragma: @@ -7046,15 +7258,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","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-06-21T12:20:11.0007664Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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-07-13T12:38:47.9157996Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7063,7 +7275,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:14 GMT + - Tue, 13 Jul 2021 12:39:55 GMT expires: - '-1' pragma: @@ -7079,7 +7291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -7099,15 +7311,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints/69106515143131","name":"69106515143131","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:20:11Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-06-21T12:20:11.0000000Z","recoveryPointSizeInGB":0}}]}' + 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;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints/16717502079079","name":"16717502079079","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-13T12:38:49Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-07-13T12:38:49.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache @@ -7116,7 +7328,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:15 GMT + - Tue, 13 Jul 2021 12:39:56 GMT expires: - '-1' pragma: @@ -7152,15 +7364,15 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","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-06-21T12:20:11.0007664Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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-07-13T12:38:47.9157996Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7169,7 +7381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:16 GMT + - Tue, 13 Jul 2021 12:39:56 GMT expires: - '-1' pragma: @@ -7193,7 +7405,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00:00:00.000Z"}}' + "2021-08-12T00:00:00.000Z"}}' headers: Accept: - application/json @@ -7210,28 +7422,28 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/backup?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/backup?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/operationsStatus/a172c5bc-a73a-4d95-b049-161b09ca753d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/operationsStatus/c9088b0b-ee95-4f2b-8fd8-99522f31294b?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:21:16 GMT + - Tue, 13 Jul 2021 12:39: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/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/operationResults/a172c5bc-a73a-4d95-b049-161b09ca753d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/operationResults/c9088b0b-ee95-4f2b-8fd8-99522f31294b?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7239,7 +7451,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -7259,15 +7471,68 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a172c5bc-a73a-4d95-b049-161b09ca753d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c9088b0b-ee95-4f2b-8fd8-99522f31294b?api-version=2021-01-01 response: body: - string: '{"id":"a172c5bc-a73a-4d95-b049-161b09ca753d","name":"a172c5bc-a73a-4d95-b049-161b09ca753d","status":"Succeeded","startTime":"2021-06-21T12:21:16.7098312Z","endTime":"2021-06-21T12:21:16.7098312Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6779f44-0139-4caf-9270-bc79640fa9c6"}}' + string: '{"id":"c9088b0b-ee95-4f2b-8fd8-99522f31294b","name":"c9088b0b-ee95-4f2b-8fd8-99522f31294b","status":"InProgress","startTime":"2021-07-13T12:39:57.3849055Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:39: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: + - '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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --retain-until --backup-management-type --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c9088b0b-ee95-4f2b-8fd8-99522f31294b?api-version=2021-01-01 + response: + body: + string: '{"id":"c9088b0b-ee95-4f2b-8fd8-99522f31294b","name":"c9088b0b-ee95-4f2b-8fd8-99522f31294b","status":"Succeeded","startTime":"2021-07-13T12:39:57.3849055Z","endTime":"2021-07-13T12:39:57.3849055Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0b5a1dd8-07b7-4407-9b19-dd301b6856b8"}}' headers: cache-control: - no-cache @@ -7276,7 +7541,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 2021 12:39:58 GMT expires: - '-1' pragma: @@ -7292,7 +7557,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '146' x-powered-by: - ASP.NET status: @@ -7312,17 +7577,17 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6","name":"c6779f44-0139-4caf-9270-bc79640fa9c6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.0079977S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8","name":"0b5a1dd8-07b7-4407-9b19-dd301b6856b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.2266429S","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-06-21T12:21:16.7098312Z","activityId":"2cc26fb0-d28b-11eb-bcc0-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:39:57.3849055Z","activityId":"6cb8d42e-e3d7-11eb-9070-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7331,7 +7596,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 2021 12:39:59 GMT expires: - '-1' pragma: @@ -7368,17 +7633,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6","name":"c6779f44-0139-4caf-9270-bc79640fa9c6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4129875S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8","name":"0b5a1dd8-07b7-4407-9b19-dd301b6856b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.6909347S","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-06-21T12:21:16.7098312Z","activityId":"2cc26fb0-d28b-11eb-bcc0-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:39:57.3849055Z","activityId":"6cb8d42e-e3d7-11eb-9070-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7387,7 +7652,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 2021 12:39:59 GMT expires: - '-1' pragma: @@ -7424,17 +7689,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6","name":"c6779f44-0139-4caf-9270-bc79640fa9c6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.6409717S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8","name":"0b5a1dd8-07b7-4407-9b19-dd301b6856b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.9141707S","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-06-21T12:21:16.7098312Z","activityId":"2cc26fb0-d28b-11eb-bcc0-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:39:57.3849055Z","activityId":"6cb8d42e-e3d7-11eb-9070-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7443,7 +7708,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:18 GMT + - Tue, 13 Jul 2021 12:39:59 GMT expires: - '-1' pragma: @@ -7480,17 +7745,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6779f44-0139-4caf-9270-bc79640fa9c6","name":"c6779f44-0139-4caf-9270-bc79640fa9c6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5171826S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b5a1dd8-07b7-4407-9b19-dd301b6856b8","name":"0b5a1dd8-07b7-4407-9b19-dd301b6856b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.9089841S","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-06-21T12:21:16.7098312Z","endTime":"2021-06-21T12:21:19.2270138Z","activityId":"2cc26fb0-d28b-11eb-bcc0-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-07-13T12:39:57.3849055Z","endTime":"2021-07-13T12:40:00.2938896Z","activityId":"6cb8d42e-e3d7-11eb-9070-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7499,7 +7764,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:47 GMT + - Tue, 13 Jul 2021 12:40:30 GMT expires: - '-1' pragma: @@ -7536,15 +7801,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","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-06-21T12:21:16.7098312Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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-07-13T12:39:57.3849055Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7553,7 +7818,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:18 GMT + - Tue, 13 Jul 2021 12:41:00 GMT expires: - '-1' pragma: @@ -7569,7 +7834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -7589,15 +7854,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints/58034486167645","name":"58034486167645","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:21:17Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-06-21T12:21:17.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;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed/recoveryPoints/69106515143131","name":"69106515143131","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:20:11Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-06-21T12:20:11.0000000Z","recoveryPointSizeInGB":0}}]}' + 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;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints/14589374926692","name":"14589374926692","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-13T12:39:58Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-07-13T12:39:58.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;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4/recoveryPoints/16717502079079","name":"16717502079079","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-13T12:38:49Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-07-13T12:38:49.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache @@ -7606,7 +7871,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:18 GMT + - Tue, 13 Jul 2021 12:41:00 GMT expires: - '-1' pragma: @@ -7622,7 +7887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7642,15 +7907,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","name":"AzureFileShare;4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed","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-06-21T12:21:16.7098312Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","name":"AzureFileShare;bf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4","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-07-13T12:39:57.3849055Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7659,7 +7924,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:19 GMT + - Tue, 13 Jul 2021 12:41:01 GMT expires: - '-1' pragma: @@ -7675,7 +7940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -7697,28 +7962,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B4d38ed9fdffda0f26dd0b3779d41252d0e121b06b3245eabba318a844a758fed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf1416c43ee7afa09d3c00baba6464f672d5be0dedb300146ee48b9b25eb99a4?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:22:20 GMT + - Tue, 13 Jul 2021 12:41: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/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7746,24 +8011,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:21 GMT + - Tue, 13 Jul 2021 12:41:02 GMT expires: - '-1' pragma: @@ -7779,7 +8044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '149' x-powered-by: - ASP.NET status: @@ -7799,24 +8064,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:22 GMT + - Tue, 13 Jul 2021 12:41:04 GMT expires: - '-1' pragma: @@ -7832,7 +8097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '148' x-powered-by: - ASP.NET status: @@ -7852,24 +8117,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:23 GMT + - Tue, 13 Jul 2021 12:41:05 GMT expires: - '-1' pragma: @@ -7885,7 +8150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '147' x-powered-by: - ASP.NET status: @@ -7905,24 +8170,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:24 GMT + - Tue, 13 Jul 2021 12:41:06 GMT expires: - '-1' pragma: @@ -7938,7 +8203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '146' x-powered-by: - ASP.NET status: @@ -7958,24 +8223,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:25 GMT + - Tue, 13 Jul 2021 12:41:07 GMT expires: - '-1' pragma: @@ -7991,7 +8256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '145' x-powered-by: - ASP.NET status: @@ -8011,24 +8276,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:27 GMT + - Tue, 13 Jul 2021 12:41:09 GMT expires: - '-1' pragma: @@ -8044,7 +8309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '144' x-powered-by: - ASP.NET status: @@ -8064,24 +8329,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:28 GMT + - Tue, 13 Jul 2021 12:41:10 GMT expires: - '-1' pragma: @@ -8097,7 +8362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '143' x-powered-by: - ASP.NET status: @@ -8117,24 +8382,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:29 GMT + - Tue, 13 Jul 2021 12:41:12 GMT expires: - '-1' pragma: @@ -8150,7 +8415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '142' x-powered-by: - ASP.NET status: @@ -8170,24 +8435,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:30 GMT + - Tue, 13 Jul 2021 12:41:14 GMT expires: - '-1' pragma: @@ -8203,7 +8468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '141' x-powered-by: - ASP.NET status: @@ -8223,24 +8488,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:32 GMT + - Tue, 13 Jul 2021 12:41:15 GMT expires: - '-1' pragma: @@ -8256,7 +8521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '140' x-powered-by: - ASP.NET status: @@ -8276,24 +8541,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:33 GMT + - Tue, 13 Jul 2021 12:41:17 GMT expires: - '-1' pragma: @@ -8309,7 +8574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '139' x-powered-by: - ASP.NET status: @@ -8329,24 +8594,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:34 GMT + - Tue, 13 Jul 2021 12:41:18 GMT expires: - '-1' pragma: @@ -8362,7 +8627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '138' x-powered-by: - ASP.NET status: @@ -8382,24 +8647,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:35 GMT + - Tue, 13 Jul 2021 12:41:19 GMT expires: - '-1' pragma: @@ -8415,7 +8680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '137' x-powered-by: - ASP.NET status: @@ -8435,24 +8700,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:37 GMT + - Tue, 13 Jul 2021 12:41:20 GMT expires: - '-1' pragma: @@ -8468,7 +8733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '136' x-powered-by: - ASP.NET status: @@ -8488,24 +8753,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:38 GMT + - Tue, 13 Jul 2021 12:41:21 GMT expires: - '-1' pragma: @@ -8521,7 +8786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '135' x-powered-by: - ASP.NET status: @@ -8541,24 +8806,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:39 GMT + - Tue, 13 Jul 2021 12:41:23 GMT expires: - '-1' pragma: @@ -8574,7 +8839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '134' x-powered-by: - ASP.NET status: @@ -8594,24 +8859,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"InProgress","startTime":"2021-06-21T12:22:20.603445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"InProgress","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:40 GMT + - Tue, 13 Jul 2021 12:41:24 GMT expires: - '-1' pragma: @@ -8627,7 +8892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '133' x-powered-by: - ASP.NET status: @@ -8647,24 +8912,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a843e6e9-013e-4af8-8eca-ecc6df5ae620?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0b167644-ea16-4fdd-98b2-afc72024f7b1?api-version=2021-01-01 response: body: - string: '{"id":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","name":"a843e6e9-013e-4af8-8eca-ecc6df5ae620","status":"Succeeded","startTime":"2021-06-21T12:22:20.603445Z","endTime":"2021-06-21T12:22:20.603445Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"348f4462-b085-4ccc-b349-414f00e0aa1a"}}' + string: '{"id":"0b167644-ea16-4fdd-98b2-afc72024f7b1","name":"0b167644-ea16-4fdd-98b2-afc72024f7b1","status":"Succeeded","startTime":"2021-07-13T12:41:03.0527123Z","endTime":"2021-07-13T12:41:03.0527123Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"045a25a7-3870-483b-9f25-ce75413b4bbd"}}' headers: cache-control: - no-cache content-length: - - '302' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:41 GMT + - Tue, 13 Jul 2021 12:41:25 GMT expires: - '-1' pragma: @@ -8680,7 +8945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '132' x-powered-by: - ASP.NET status: @@ -8700,16 +8965,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/348f4462-b085-4ccc-b349-414f00e0aa1a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/045a25a7-3870-483b-9f25-ce75413b4bbd?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/348f4462-b085-4ccc-b349-414f00e0aa1a","name":"348f4462-b085-4ccc-b349-414f00e0aa1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.5408821S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:22:20.603445Z","endTime":"2021-06-21T12:22:42.1443271Z","activityId":"52bd5b05-d28b-11eb-b20a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/045a25a7-3870-483b-9f25-ce75413b4bbd","name":"045a25a7-3870-483b-9f25-ce75413b4bbd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT22.1924397S","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-07-13T12:41:03.0527123Z","endTime":"2021-07-13T12:41:25.245152Z","activityId":"939dd60c-e3d7-11eb-9f76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8718,7 +8983,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:42 GMT + - Tue, 13 Jul 2021 12:41:25 GMT expires: - '-1' pragma: @@ -8755,8 +9020,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -8772,7 +9037,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:43 GMT + - Tue, 13 Jul 2021 12:41:26 GMT expires: - '-1' pragma: @@ -8810,8 +9075,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -8821,17 +9086,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-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/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:22:44 GMT + - Tue, 13 Jul 2021 12: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/backupOperationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8859,18 +9124,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8878,11 +9143,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:45 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -8892,60 +9157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:22: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '149' x-powered-by: - ASP.NET status: @@ -8965,18 +9177,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8984,11 +9196,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:47 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -8998,7 +9210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '148' x-powered-by: - ASP.NET status: @@ -9018,18 +9230,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9037,11 +9249,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:49 GMT + - Tue, 13 Jul 2021 12: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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9051,7 +9263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '147' x-powered-by: - ASP.NET status: @@ -9071,18 +9283,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9090,11 +9302,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:50 GMT + - Tue, 13 Jul 2021 12: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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9104,7 +9316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '146' x-powered-by: - ASP.NET status: @@ -9124,18 +9336,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9143,11 +9355,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:51 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9157,7 +9369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '145' x-powered-by: - ASP.NET status: @@ -9177,18 +9389,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9196,11 +9408,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:52 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9210,7 +9422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '144' x-powered-by: - ASP.NET status: @@ -9230,18 +9442,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9249,11 +9461,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:53 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9263,7 +9475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '143' x-powered-by: - ASP.NET status: @@ -9283,18 +9495,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9302,11 +9514,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:55 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9316,7 +9528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '142' x-powered-by: - ASP.NET status: @@ -9336,18 +9548,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9355,11 +9567,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:56 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9369,7 +9581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '141' x-powered-by: - ASP.NET status: @@ -9389,18 +9601,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9408,11 +9620,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:57 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9422,7 +9634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '140' x-powered-by: - ASP.NET status: @@ -9442,18 +9654,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9461,11 +9673,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:58 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9475,7 +9687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '139' x-powered-by: - ASP.NET status: @@ -9495,18 +9707,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9514,11 +9726,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:00 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9528,7 +9740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '138' x-powered-by: - ASP.NET status: @@ -9548,18 +9760,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9567,11 +9779,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:01 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9581,7 +9793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '137' x-powered-by: - ASP.NET status: @@ -9601,18 +9813,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9620,11 +9832,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:02 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9634,7 +9846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '136' x-powered-by: - ASP.NET status: @@ -9654,18 +9866,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9673,11 +9885,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:03 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9687,7 +9899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '135' x-powered-by: - ASP.NET status: @@ -9707,18 +9919,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9726,11 +9938,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:05 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9740,7 +9952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '134' x-powered-by: - ASP.NET status: @@ -9760,18 +9972,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9779,11 +9991,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:06 GMT + - Tue, 13 Jul 2021 12:41: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/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 pragma: - no-cache server: @@ -9793,7 +10005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '133' x-powered-by: - ASP.NET status: @@ -9813,12 +10025,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/76b88b56-fb6c-4b08-9a12-375c951e3aa2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cc1cbf59-3892-463f-99e6-c1d2e7e4d456?api-version=2021-01-01 response: body: string: '' @@ -9828,7 +10040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:23:07 GMT + - Tue, 13 Jul 2021 12:41:50 GMT expires: - '-1' pragma: @@ -9838,7 +10050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '132' x-powered-by: - ASP.NET status: @@ -9858,8 +10070,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9875,7 +10087,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:47 GMT + - Tue, 13 Jul 2021 12:43:30 GMT expires: - '-1' pragma: @@ -9891,7 +10103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9901,7 +10113,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9913,9 +10125,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -9925,7 +10137,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:24:51 GMT + - Tue, 13 Jul 2021 12:43:37 GMT expires: - '-1' pragma: @@ -9939,4 +10151,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 63557bb1a21..06ccb96f10f 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A25.547435Z''\"","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-07-13T12%3A35%3A58.885355Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:25 GMT + - Tue, 13 Jul 2021 12:35:58 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:28.8195411Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:28.8195411Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T12:36:01.2976336Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T12:36:01.2976336Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:49 GMT + - Tue, 13 Jul 2021 12:36:26 GMT expires: - '-1' pragma: @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:25 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:27 GMT etag: - - '"0x8D934AE96D3DC15"' + - '"0x8D945FAD58150CC"' last-modified: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:27 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -147,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -164,7 +164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 12:36:27 GMT expires: - '-1' pragma: @@ -180,7 +180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -189,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T22:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T22:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -209,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 12:36:28 GMT expires: - '-1' pragma: @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 12:36:29 GMT expires: - '-1' pragma: @@ -315,24 +315,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2ip7fgbyx6;clitest5hxuss6k7h7kn32qg","name":"StorageContainer;Storage;clitest.rg2ip7fgbyx6;clitest5hxuss6k7h7kn32qg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest5hxuss6k7h7kn32qg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ip7fgbyx6/providers/Microsoft.Storage/storageAccounts/clitest5hxuss6k7h7kn32qg"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","name":"StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cliteststlyhak4h5y7trjbv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","name":"StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest75nlu7toascbktmwv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '777' + - '18826' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 12:36:28 GMT expires: - '-1' pragma: @@ -370,8 +370,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -381,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2019-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/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -419,12 +419,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -434,11 +434,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:54 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -446,7 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -466,12 +466,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -481,11 +481,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -493,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '148' x-powered-by: - ASP.NET status: @@ -513,12 +513,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -528,11 +528,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -540,7 +540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '147' x-powered-by: - ASP.NET status: @@ -560,12 +560,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -575,11 +575,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:58 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -587,7 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '146' x-powered-by: - ASP.NET status: @@ -607,12 +607,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -622,11 +622,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:59 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -634,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '145' x-powered-by: - ASP.NET status: @@ -654,12 +654,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -669,11 +669,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:00 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -681,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '144' x-powered-by: - ASP.NET status: @@ -701,12 +701,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -716,11 +716,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:02 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -728,7 +728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '143' x-powered-by: - ASP.NET status: @@ -748,12 +748,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -763,11 +763,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:03 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -775,7 +775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '142' x-powered-by: - ASP.NET status: @@ -795,12 +795,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -810,11 +810,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:04 GMT + - Tue, 13 Jul 2021 12:36: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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -822,7 +822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '141' x-powered-by: - ASP.NET status: @@ -842,12 +842,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/3d61209a-e2b3-4bef-b41c-d7185c63f507?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/014b610b-5f02-4b09-bd47-ea0eb58ae4f6?api-version=2021-01-01 response: body: string: '' @@ -855,7 +855,7 @@ interactions: cache-control: - no-cache date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Tue, 13 Jul 2021 12:36:41 GMT expires: - '-1' pragma: @@ -865,7 +865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '140' x-powered-by: - ASP.NET status: @@ -885,24 +885,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","name":"StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxwjqcdjfjsdxdfwxf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg523jlp2qto/providers/Microsoft.Storage/storageAccounts/clitestxwjqcdjfjsdxdfwxf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","name":"StorageContainer;Storage;clitest.rgftuxhbxc3o;clitestm6eopwdgj5icqi7to","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestm6eopwdgj5icqi7to","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgftuxhbxc3o/providers/Microsoft.Storage/storageAccounts/clitestm6eopwdgj5icqi7to"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","name":"StorageContainer;Storage;clitest.rg3d7kl2qk63;cliteststlyhak4h5y7trjbv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cliteststlyhak4h5y7trjbv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj;clitest3yu3ebcqsrcelfxt2","name":"StorageContainer;Storage;clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj;clitest3yu3ebcqsrcelfxt2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3yu3ebcqsrcelfxt2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgenutdrnicensg5a5vsb46jjn2ak4r74klgf3c4sagiryh4bmkij5xnid7i2a32osj/providers/Microsoft.Storage/storageAccounts/clitest3yu3ebcqsrcelfxt2"}},{"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.rghempizrszj;clitest75nlu7toascbktmwv","name":"StorageContainer;Storage;clitest.rghempizrszj;clitest75nlu7toascbktmwv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest75nlu7toascbktmwv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rghxhxj2mma6;clitesth5ez76uhriyln47la","name":"StorageContainer;Storage;clitest.rghxhxj2mma6;clitesth5ez76uhriyln47la","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesth5ez76uhriyln47la","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghxhxj2mma6/providers/Microsoft.Storage/storageAccounts/clitesth5ez76uhriyln47la"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '6381' + - '19815' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Tue, 13 Jul 2021 12:36:42 GMT expires: - '-1' pragma: @@ -943,8 +943,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -954,7 +954,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -962,11 +962,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -976,7 +976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -996,18 +996,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1015,11 +1015,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1049,18 +1049,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1068,11 +1068,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1102,18 +1102,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1121,11 +1121,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:09 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1155,18 +1155,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1174,11 +1174,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:10 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1208,18 +1208,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1227,11 +1227,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:11 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1261,18 +1261,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1280,11 +1280,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:13 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1314,18 +1314,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1333,11 +1333,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:14 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1367,18 +1367,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1386,11 +1386,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:15 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1420,18 +1420,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1439,11 +1439,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:16 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1473,18 +1473,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1492,11 +1492,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:18 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1526,18 +1526,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1545,11 +1545,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:19 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1579,18 +1579,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1598,11 +1598,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:20 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1632,18 +1632,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1651,11 +1651,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1685,18 +1685,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1704,11 +1704,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:22 GMT + - Tue, 13 Jul 2021 12:36: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1738,18 +1738,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1757,11 +1757,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:24 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1791,18 +1791,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1810,11 +1810,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1844,18 +1844,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1863,11 +1863,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:26 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1897,18 +1897,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1916,11 +1916,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:27 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -1950,18 +1950,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1969,11 +1969,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:28 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2003,18 +2003,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2022,11 +2022,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2056,18 +2056,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2075,11 +2075,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:31 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2109,18 +2109,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2128,11 +2128,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:32 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2162,18 +2162,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2181,11 +2181,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:33 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2215,18 +2215,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2234,11 +2234,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:35 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2268,18 +2268,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2287,11 +2287,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:36 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2321,18 +2321,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2340,11 +2340,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:38 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2374,18 +2374,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2393,11 +2393,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2427,18 +2427,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2446,11 +2446,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:41 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2480,18 +2480,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2499,11 +2499,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:42 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2533,18 +2533,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2552,11 +2552,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:43 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2586,18 +2586,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2605,11 +2605,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:44 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2639,18 +2639,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2658,11 +2658,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:46 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2692,18 +2692,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2711,11 +2711,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2745,18 +2745,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2764,11 +2764,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:48 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2798,18 +2798,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2817,11 +2817,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:49 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2851,18 +2851,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2870,11 +2870,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:50 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2904,18 +2904,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2923,11 +2923,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:52 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -2957,18 +2957,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2976,11 +2976,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3010,18 +3010,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3029,11 +3029,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:54 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3063,18 +3063,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3082,11 +3082,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:55 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3116,18 +3116,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3135,11 +3135,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:57 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3169,18 +3169,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3188,11 +3188,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:58 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3222,18 +3222,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3241,11 +3241,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:59 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3275,18 +3275,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3294,11 +3294,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:00 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3328,18 +3328,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3347,11 +3347,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3381,18 +3381,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3400,11 +3400,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:02 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3434,18 +3434,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3453,11 +3453,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:04 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3487,18 +3487,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3506,11 +3506,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:05 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3540,18 +3540,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3559,11 +3559,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:06 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3593,18 +3593,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3612,11 +3612,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3646,18 +3646,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3665,11 +3665,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3699,18 +3699,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3718,11 +3718,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:10 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3752,18 +3752,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3771,11 +3771,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:11 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3805,18 +3805,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3824,11 +3824,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3858,18 +3858,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3877,11 +3877,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:14 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-01 pragma: - no-cache server: @@ -3911,36 +3911,36 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dfcfafc8-8889-4e5c-88e3-2763bfcf401f?api-version=2021-01-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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -3948,8 +3948,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3964,45 +3964,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:16 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4014,43 +4014,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-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=2021-01-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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:17 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -4070,18 +4068,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4089,11 +4087,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:18 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 pragma: - no-cache server: @@ -4103,7 +4101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '149' x-powered-by: - ASP.NET status: @@ -4123,18 +4121,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4142,11 +4140,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:20 GMT + - Tue, 13 Jul 2021 12:37: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/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 pragma: - no-cache server: @@ -4156,7 +4154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '148' x-powered-by: - ASP.NET status: @@ -4176,45 +4174,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/116d3d2e-6868-49e1-a894-7a5d86dfd61c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 12:37: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/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4229,45 +4227,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-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/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 12:37: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/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4279,46 +4277,40 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/dda995a8-56a7-4ff2-8282-16d7946a64aa?api-version=2021-01-01 response: body: string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '0' + content-type: + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 12:37: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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -4333,36 +4325,36 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-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;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","name":"azurefileshare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1039' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 12:37: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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -4370,8 +4362,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4386,47 +4378,49 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-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-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22: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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '740' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:24 GMT + - Tue, 13 Jul 2021 12:37: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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '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 @@ -4436,43 +4430,43 @@ 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-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%3Bacdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9?api-version=2021-01-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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2019-05-13-preview + - https://management.azure.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;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/operationsStatus/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:25 GMT + - Tue, 13 Jul 2021 12:38: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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/operationResults/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -4492,45 +4486,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:26 GMT + - Tue, 13 Jul 2021 12:38: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/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4545,37 +4539,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b5f10992-2e64-4b79-a30b-5846f0547125?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '187' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:19:27 GMT + - Tue, 13 Jul 2021 12:38: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: - - '145' + - '148' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -4590,24 +4592,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","name":"azurefileshare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","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":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1039' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:27 GMT + - Tue, 13 Jul 2021 12:38:03 GMT expires: - '-1' pragma: @@ -4643,24 +4645,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '740' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Tue, 13 Jul 2021 12:38:04 GMT expires: - '-1' pragma: @@ -4676,16 +4678,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' 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 @@ -4695,48 +4695,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","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;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/operationsStatus/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Tue, 13 Jul 2021 12:38: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/protectedItems/azurefileshare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/operationResults/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + 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: @@ -4751,24 +4751,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 12:38:07 GMT expires: - '-1' pragma: @@ -4784,7 +4784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -4804,24 +4804,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:31 GMT + - Tue, 13 Jul 2021 12:38:08 GMT expires: - '-1' pragma: @@ -4837,7 +4837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -4857,24 +4857,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:32 GMT + - Tue, 13 Jul 2021 12:38:09 GMT expires: - '-1' pragma: @@ -4890,7 +4890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '142' x-powered-by: - ASP.NET status: @@ -4910,24 +4910,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:33 GMT + - Tue, 13 Jul 2021 12:38:10 GMT expires: - '-1' pragma: @@ -4943,7 +4943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: @@ -4963,24 +4963,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:34 GMT + - Tue, 13 Jul 2021 12:38:12 GMT expires: - '-1' pragma: @@ -4996,7 +4996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '140' x-powered-by: - ASP.NET status: @@ -5016,24 +5016,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:36 GMT + - Tue, 13 Jul 2021 12:38:13 GMT expires: - '-1' pragma: @@ -5049,7 +5049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '139' x-powered-by: - ASP.NET status: @@ -5069,24 +5069,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:37 GMT + - Tue, 13 Jul 2021 12:38:14 GMT expires: - '-1' pragma: @@ -5102,7 +5102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '138' x-powered-by: - ASP.NET status: @@ -5122,24 +5122,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:38 GMT + - Tue, 13 Jul 2021 12:38:15 GMT expires: - '-1' pragma: @@ -5155,7 +5155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '137' x-powered-by: - ASP.NET status: @@ -5175,24 +5175,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:39 GMT + - Tue, 13 Jul 2021 12:38:16 GMT expires: - '-1' pragma: @@ -5208,7 +5208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '136' x-powered-by: - ASP.NET status: @@ -5228,24 +5228,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:40 GMT + - Tue, 13 Jul 2021 12:38:18 GMT expires: - '-1' pragma: @@ -5261,7 +5261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '135' x-powered-by: - ASP.NET status: @@ -5281,24 +5281,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:42 GMT + - Tue, 13 Jul 2021 12:38:19 GMT expires: - '-1' pragma: @@ -5314,7 +5314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '134' x-powered-by: - ASP.NET status: @@ -5334,24 +5334,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Tue, 13 Jul 2021 12:38:20 GMT expires: - '-1' pragma: @@ -5367,7 +5367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '133' x-powered-by: - ASP.NET status: @@ -5387,24 +5387,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:44 GMT + - Tue, 13 Jul 2021 12:38:21 GMT expires: - '-1' pragma: @@ -5420,7 +5420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '132' x-powered-by: - ASP.NET status: @@ -5440,24 +5440,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Tue, 13 Jul 2021 12:38:23 GMT expires: - '-1' pragma: @@ -5473,7 +5473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '131' x-powered-by: - ASP.NET status: @@ -5493,24 +5493,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:47 GMT + - Tue, 13 Jul 2021 12:38:24 GMT expires: - '-1' pragma: @@ -5526,7 +5526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '130' x-powered-by: - ASP.NET status: @@ -5546,24 +5546,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:48 GMT + - Tue, 13 Jul 2021 12:38:25 GMT expires: - '-1' pragma: @@ -5579,7 +5579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '129' x-powered-by: - ASP.NET status: @@ -5599,24 +5599,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Tue, 13 Jul 2021 12:38:26 GMT expires: - '-1' pragma: @@ -5632,7 +5632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '128' x-powered-by: - ASP.NET status: @@ -5652,24 +5652,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:50 GMT + - Tue, 13 Jul 2021 12:38:27 GMT expires: - '-1' pragma: @@ -5685,7 +5685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '127' x-powered-by: - ASP.NET status: @@ -5705,24 +5705,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Tue, 13 Jul 2021 12:38:29 GMT expires: - '-1' pragma: @@ -5738,7 +5738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '126' x-powered-by: - ASP.NET status: @@ -5758,24 +5758,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:53 GMT + - Tue, 13 Jul 2021 12:38:30 GMT expires: - '-1' pragma: @@ -5791,7 +5791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '125' x-powered-by: - ASP.NET status: @@ -5811,24 +5811,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Tue, 13 Jul 2021 12:38:31 GMT expires: - '-1' pragma: @@ -5844,7 +5844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '124' x-powered-by: - ASP.NET status: @@ -5864,24 +5864,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Tue, 13 Jul 2021 12:38:32 GMT expires: - '-1' pragma: @@ -5897,7 +5897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '123' x-powered-by: - ASP.NET status: @@ -5917,24 +5917,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:56 GMT + - Tue, 13 Jul 2021 12:38:34 GMT expires: - '-1' pragma: @@ -5950,7 +5950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '122' x-powered-by: - ASP.NET status: @@ -5970,24 +5970,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:58 GMT + - Tue, 13 Jul 2021 12:38:35 GMT expires: - '-1' pragma: @@ -6003,7 +6003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '121' x-powered-by: - ASP.NET status: @@ -6023,24 +6023,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Tue, 13 Jul 2021 12:38:36 GMT expires: - '-1' pragma: @@ -6056,7 +6056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '120' x-powered-by: - ASP.NET status: @@ -6076,24 +6076,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:00 GMT + - Tue, 13 Jul 2021 12:38:37 GMT expires: - '-1' pragma: @@ -6109,7 +6109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '119' x-powered-by: - ASP.NET status: @@ -6129,24 +6129,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Tue, 13 Jul 2021 12:38:38 GMT expires: - '-1' pragma: @@ -6162,7 +6162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '118' x-powered-by: - ASP.NET status: @@ -6182,24 +6182,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:03 GMT + - Tue, 13 Jul 2021 12:38:40 GMT expires: - '-1' pragma: @@ -6215,7 +6215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '117' x-powered-by: - ASP.NET status: @@ -6235,24 +6235,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:05 GMT + - Tue, 13 Jul 2021 12:38:41 GMT expires: - '-1' pragma: @@ -6268,7 +6268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '116' x-powered-by: - ASP.NET status: @@ -6288,24 +6288,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"InProgress","startTime":"2021-07-13T12:38:00.803489Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Tue, 13 Jul 2021 12:38:42 GMT expires: - '-1' pragma: @@ -6321,7 +6321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '115' x-powered-by: - ASP.NET status: @@ -6341,24 +6341,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1af544ad-b6b3-407c-baf6-bbda94d89e2e?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","name":"1af544ad-b6b3-407c-baf6-bbda94d89e2e","status":"Succeeded","startTime":"2021-07-13T12:38:00.803489Z","endTime":"2021-07-13T12:38:00.803489Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9e050221-ea29-4c78-bcf5-23bb4210ec20"}}' headers: cache-control: - no-cache content-length: - - '188' + - '302' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Tue, 13 Jul 2021 12:38:43 GMT expires: - '-1' pragma: @@ -6374,7 +6374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '114' x-powered-by: - ASP.NET status: @@ -6394,82 +6394,32 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9e050221-ea29-4c78-bcf5-23bb4210ec20?api-version=2021-01-01 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9e050221-ea29-4c78-bcf5-23bb4210ec20","name":"9e050221-ea29-4c78-bcf5-23bb4210ec20","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.6175327S","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-07-13T12:38:00.803489Z","endTime":"2021-07-13T12:38:43.4210217Z","activityId":"f0f22034-e3d6-11eb-9cbb-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '945' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:08 GMT + - Tue, 13 Jul 2021 12:38: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: - - '118' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 - response: - body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:20:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -6480,60 +6430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 - response: - body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"InProgress","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:20: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: - - '116' + - '149' x-powered-by: - ASP.NET status: @@ -6547,30 +6444,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c28db00f-7499-4d16-b343-d1a95de9028c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"c28db00f-7499-4d16-b343-d1a95de9028c","name":"c28db00f-7499-4d16-b343-d1a95de9028c","status":"Succeeded","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"2021-06-21T12:19:29.5669395Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"57856247-e7e5-4bf3-9b3a-613cb7dd6bfd"}}' + 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;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","name":"AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1352' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Tue, 13 Jul 2021 12:38:45 GMT expires: - '-1' pragma: @@ -6586,68 +6483,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00: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 --storage-account --azure-file-share -p + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/57856247-e7e5-4bf3-9b3a-613cb7dd6bfd?api-version=2021-01-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%3Bacdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/backup?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/57856247-e7e5-4bf3-9b3a-613cb7dd6bfd","name":"57856247-e7e5-4bf3-9b3a-613cb7dd6bfd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.2808899S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:19:29.5669395Z","endTime":"2021-06-21T12:20:11.8478294Z","activityId":"b348c526-d28a-11eb-b5c4-c8f750f92764"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.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;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/operationsStatus/89a62713-edde-497c-9cfc-b8a66a23389f?api-version=2021-01-01 cache-control: - no-cache content-length: - - '946' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:20:13 GMT + - Tue, 13 Jul 2021 12:38: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;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/operationResults/89a62713-edde-497c-9cfc-b8a66a23389f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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: @@ -6662,24 +6557,24 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/89a62713-edde-497c-9cfc-b8a66a23389f?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","name":"AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"89a62713-edde-497c-9cfc-b8a66a23389f","name":"89a62713-edde-497c-9cfc-b8a66a23389f","status":"InProgress","startTime":"2021-07-13T12:38:46.2500925Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1352' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Tue, 13 Jul 2021 12:38:46 GMT expires: - '-1' pragma: @@ -6695,66 +6590,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00: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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: 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%3B67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/backup?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/operationsStatus/ee71e23e-9baf-4738-8764-551fab0114c3?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:20: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/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/operationResults/ee71e23e-9baf-4738-8764-551fab0114c3?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6769,15 +6610,15 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee71e23e-9baf-4738-8764-551fab0114c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/89a62713-edde-497c-9cfc-b8a66a23389f?api-version=2021-01-01 response: body: - string: '{"id":"ee71e23e-9baf-4738-8764-551fab0114c3","name":"ee71e23e-9baf-4738-8764-551fab0114c3","status":"Succeeded","startTime":"2021-06-21T12:20:13.9779247Z","endTime":"2021-06-21T12:20:13.9779247Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531"}}' + string: '{"id":"89a62713-edde-497c-9cfc-b8a66a23389f","name":"89a62713-edde-497c-9cfc-b8a66a23389f","status":"Succeeded","startTime":"2021-07-13T12:38:46.2500925Z","endTime":"2021-07-13T12:38:46.2500925Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8b4f3f73-979d-4a38-b0ca-3c850f6fd78f"}}' headers: cache-control: - no-cache @@ -6786,7 +6627,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Tue, 13 Jul 2021 12:38:47 GMT expires: - '-1' pragma: @@ -6802,7 +6643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6822,17 +6663,17 @@ interactions: ParameterSetName: - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","name":"22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.0056168S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","name":"8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1192865S","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-06-21T12:20:13.9779247Z","activityId":"07539ce1-d28b-11eb-a285-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:38:46.2500925Z","activityId":"4213c6b4-e3d7-11eb-96e1-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6841,7 +6682,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Tue, 13 Jul 2021 12:38:48 GMT expires: - '-1' pragma: @@ -6858,7 +6699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6878,26 +6719,26 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","name":"22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.3197466S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","name":"8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.750105S","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-06-21T12:20:13.9779247Z","activityId":"07539ce1-d28b-11eb-a285-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:38:46.2500925Z","activityId":"4213c6b4-e3d7-11eb-96e1-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '937' + - '936' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Tue, 13 Jul 2021 12:38:48 GMT expires: - '-1' pragma: @@ -6934,17 +6775,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","name":"22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.5351804S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","name":"8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.0015519S","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-06-21T12:20:13.9779247Z","activityId":"07539ce1-d28b-11eb-a285-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:38:46.2500925Z","activityId":"4213c6b4-e3d7-11eb-96e1-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6953,7 +6794,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Tue, 13 Jul 2021 12:38:48 GMT expires: - '-1' pragma: @@ -6990,17 +6831,17 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","name":"22c2a7d4-5fe9-46fe-ac00-c91b5f9bc531","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.6870925S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","name":"8b4f3f73-979d-4a38-b0ca-3c850f6fd78f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5728741S","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-06-21T12:20:13.9779247Z","endTime":"2021-06-21T12:20:16.6650172Z","activityId":"07539ce1-d28b-11eb-a285-c8f750f92764"}}' + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-07-13T12:38:46.2500925Z","endTime":"2021-07-13T12:38:48.8229666Z","activityId":"4213c6b4-e3d7-11eb-96e1-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7009,7 +6850,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:45 GMT + - Tue, 13 Jul 2021 12:39:18 GMT expires: - '-1' pragma: @@ -7046,15 +6887,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","name":"AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","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-06-21T12:20:13.9779247Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","name":"AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","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-07-13T12:38:46.2500925Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7063,7 +6904,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:15 GMT + - Tue, 13 Jul 2021 12:39:50 GMT expires: - '-1' pragma: @@ -7079,7 +6920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7099,15 +6940,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/recoveryPoints?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bacdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/recoveryPoints/14299240489975","name":"14299240489975","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-06-21T12:20:15Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-06-21T12:20:15.0000000Z","recoveryPointSizeInGB":0}}]}' + 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;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/recoveryPoints/80864726302564","name":"80864726302564","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-07-13T12:38:47Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-07-13T12:38:47.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache @@ -7116,7 +6957,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:16 GMT + - Tue, 13 Jul 2021 12:39:51 GMT expires: - '-1' pragma: @@ -7152,15 +6993,15 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%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;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","name":"AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","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-06-21T12:20:13.9779247Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","name":"AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","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-07-13T12:38:46.2500925Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7169,7 +7010,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:16 GMT + - Tue, 13 Jul 2021 12:39:53 GMT expires: - '-1' pragma: @@ -7205,7 +7046,7 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -7221,7 +7062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 2021 12:39:53 GMT expires: - '-1' pragma: @@ -7249,12 +7090,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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-06-21T12:17:28.8195411Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T12:17:28.7570605Z","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-07-13T12:36:01.3132578Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T12:36:01.2195056Z","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 @@ -7263,7 +7104,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Tue, 13 Jul 2021 12:39:53 GMT expires: - '-1' pragma: @@ -7301,28 +7142,28 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/recoveryPoints/14299240489975/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bacdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/recoveryPoints/80864726302564/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/operationsStatus/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/operationsStatus/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:21:18 GMT + - Tue, 13 Jul 2021 12:39: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;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7/operationResults/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9/operationResults/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7350,68 +7191,15 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 - response: - body: - string: '{"id":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","status":"InProgress","startTime":"2021-06-21T12:21:18.1574999Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:21: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: - - '114' - 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 --query - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","status":"Succeeded","startTime":"2021-06-21T12:21:18.1574999Z","endTime":"2021-06-21T12:21:18.1574999Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"321fb079-39ec-49f5-9ead-0e64bfa3cb40"}}' + string: '{"id":"99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","status":"Succeeded","startTime":"2021-07-13T12:39:54.8847895Z","endTime":"2021-07-13T12:39:54.8847895Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"99ecaab1-12de-4abe-952d-52a10b30ff5e"}}' headers: cache-control: - no-cache @@ -7420,7 +7208,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:19 GMT + - Tue, 13 Jul 2021 12:39:55 GMT expires: - '-1' pragma: @@ -7436,7 +7224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '149' x-powered-by: - ASP.NET status: @@ -7456,15 +7244,15 @@ interactions: ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.3472865S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:21:18.1574999Z","activityId":"2d2f4f75-d28b-11eb-bab4-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1.5156907S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-13T12:39:54.8847895Z","activityId":"6a86a12c-e3d7-11eb-80e7-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7473,7 +7261,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:20 GMT + - Tue, 13 Jul 2021 12:39:55 GMT expires: - '-1' pragma: @@ -7490,7 +7278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '131' x-powered-by: - ASP.NET status: @@ -7510,24 +7298,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.822347S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:21:18.1574999Z","activityId":"2d2f4f75-d28b-11eb-bab4-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1.949435S","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-07-13T12:39:54.8847895Z","activityId":"6a86a12c-e3d7-11eb-80e7-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '779' + - '1140' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:20 GMT + - Tue, 13 Jul 2021 12:39:55 GMT expires: - '-1' pragma: @@ -7564,24 +7356,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT3.0322333S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:21:18.1574999Z","activityId":"2d2f4f75-d28b-11eb-bab4-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT2.2151758S","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-07-13T12:39:54.8847895Z","activityId":"6a86a12c-e3d7-11eb-80e7-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '780' + - '1141' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:20 GMT + - Tue, 13 Jul 2021 12:39:56 GMT expires: - '-1' pragma: @@ -7618,19 +7414,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT33.2732651S","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/99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT32.4636492S","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-06-21T12:21:18.1574999Z","activityId":"2d2f4f75-d28b-11eb-bab4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-13T12:39:54.8847895Z","activityId":"6a86a12c-e3d7-11eb-80e7-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7639,7 +7435,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:51 GMT + - Tue, 13 Jul 2021 12:40:27 GMT expires: - '-1' pragma: @@ -7676,19 +7472,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M3.5922534S","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/99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M2.7419518S","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-06-21T12:21:18.1574999Z","activityId":"2d2f4f75-d28b-11eb-bab4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-07-13T12:39:54.8847895Z","activityId":"6a86a12c-e3d7-11eb-80e7-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7697,7 +7493,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:21 GMT + - Tue, 13 Jul 2021 12:40:57 GMT expires: - '-1' pragma: @@ -7734,28 +7530,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/321fb079-39ec-49f5-9ead-0e64bfa3cb40","name":"321fb079-39ec-49f5-9ead-0e64bfa3cb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M8.7108676S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"6/21/2021 - 12:20:15 PM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ecaab1-12de-4abe-952d-52a10b30ff5e","name":"99ecaab1-12de-4abe-952d-52a10b30ff5e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":[1],"duration":"PT1M10.2810946S","storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"7/13/2021 + 12:38:48 PM","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-06-21T12:21:18.1574999Z","endTime":"2021-06-21T12:22:26.8683675Z","activityId":"2d2f4f75-d28b-11eb-bab4-c8f750f92764"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-07-13T12:39:54.8847895Z","endTime":"2021-07-13T12:41:05.1658841Z","activityId":"6a86a12c-e3d7-11eb-80e7-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1234' + - '1235' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:52 GMT + - Tue, 13 Jul 2021 12:41:27 GMT expires: - '-1' pragma: @@ -7792,15 +7588,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","name":"AzureFileShare;67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7","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-06-21T12:20:13.9779247Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","name":"AzureFileShare;acdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9","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-07-13T12:38:46.2500925Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7809,7 +7605,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:22 GMT + - Tue, 13 Jul 2021 12:41:58 GMT expires: - '-1' pragma: @@ -7825,7 +7621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -7847,28 +7643,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B67fbcbd05034853fe40dbb3d32b9b8c984e3fc99d8507b5652cf9e10ac7052d7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bacdec88d187a97d5bda9d9b3b7ae88465459845b36948697b3ddb8af02e50cf9?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:23:22 GMT + - Tue, 13 Jul 2021 12:41: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/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -7876,7 +7672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -7896,15 +7692,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7913,7 +7709,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:23 GMT + - Tue, 13 Jul 2021 12:41:59 GMT expires: - '-1' pragma: @@ -7929,7 +7725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '149' x-powered-by: - ASP.NET status: @@ -7949,15 +7745,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7966,7 +7762,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:24 GMT + - Tue, 13 Jul 2021 12:42:00 GMT expires: - '-1' pragma: @@ -7982,7 +7778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '148' x-powered-by: - ASP.NET status: @@ -8002,15 +7798,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8019,7 +7815,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:25 GMT + - Tue, 13 Jul 2021 12:42:02 GMT expires: - '-1' pragma: @@ -8035,7 +7831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '147' x-powered-by: - ASP.NET status: @@ -8055,15 +7851,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8072,7 +7868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:27 GMT + - Tue, 13 Jul 2021 12:42:03 GMT expires: - '-1' pragma: @@ -8088,7 +7884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '146' x-powered-by: - ASP.NET status: @@ -8108,15 +7904,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8125,7 +7921,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:28 GMT + - Tue, 13 Jul 2021 12:42:04 GMT expires: - '-1' pragma: @@ -8141,7 +7937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '145' x-powered-by: - ASP.NET status: @@ -8161,15 +7957,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8178,7 +7974,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:29 GMT + - Tue, 13 Jul 2021 12:42:05 GMT expires: - '-1' pragma: @@ -8194,7 +7990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '144' x-powered-by: - ASP.NET status: @@ -8214,15 +8010,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8231,7 +8027,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:30 GMT + - Tue, 13 Jul 2021 12:42:07 GMT expires: - '-1' pragma: @@ -8247,7 +8043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '143' x-powered-by: - ASP.NET status: @@ -8267,15 +8063,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8284,7 +8080,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:32 GMT + - Tue, 13 Jul 2021 12:42:08 GMT expires: - '-1' pragma: @@ -8300,7 +8096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '142' x-powered-by: - ASP.NET status: @@ -8320,15 +8116,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8337,7 +8133,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:33 GMT + - Tue, 13 Jul 2021 12:42:09 GMT expires: - '-1' pragma: @@ -8353,7 +8149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '141' x-powered-by: - ASP.NET status: @@ -8373,15 +8169,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8390,7 +8186,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:34 GMT + - Tue, 13 Jul 2021 12:42:11 GMT expires: - '-1' pragma: @@ -8406,7 +8202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '140' x-powered-by: - ASP.NET status: @@ -8426,15 +8222,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8443,7 +8239,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:35 GMT + - Tue, 13 Jul 2021 12:42:12 GMT expires: - '-1' pragma: @@ -8459,7 +8255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '139' x-powered-by: - ASP.NET status: @@ -8479,15 +8275,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8496,7 +8292,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:37 GMT + - Tue, 13 Jul 2021 12:42:14 GMT expires: - '-1' pragma: @@ -8512,7 +8308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '138' x-powered-by: - ASP.NET status: @@ -8532,15 +8328,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8549,7 +8345,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:38 GMT + - Tue, 13 Jul 2021 12:42:15 GMT expires: - '-1' pragma: @@ -8565,7 +8361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '137' x-powered-by: - ASP.NET status: @@ -8585,15 +8381,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8602,7 +8398,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:39 GMT + - Tue, 13 Jul 2021 12:42:16 GMT expires: - '-1' pragma: @@ -8618,7 +8414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '136' x-powered-by: - ASP.NET status: @@ -8638,15 +8434,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8655,7 +8451,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:40 GMT + - Tue, 13 Jul 2021 12:42:17 GMT expires: - '-1' pragma: @@ -8671,7 +8467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '135' x-powered-by: - ASP.NET status: @@ -8691,15 +8487,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8708,7 +8504,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:42 GMT + - Tue, 13 Jul 2021 12:42:18 GMT expires: - '-1' pragma: @@ -8724,7 +8520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '134' x-powered-by: - ASP.NET status: @@ -8744,15 +8540,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"InProgress","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"InProgress","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8761,7 +8557,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:43 GMT + - Tue, 13 Jul 2021 12:42:20 GMT expires: - '-1' pragma: @@ -8777,7 +8573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '133' x-powered-by: - ASP.NET status: @@ -8797,15 +8593,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71c1052b-6564-4da3-9433-32d0e3a4b88e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/02419016-072a-45c6-9499-7bfc50f32f7b?api-version=2021-01-01 response: body: - string: '{"id":"71c1052b-6564-4da3-9433-32d0e3a4b88e","name":"71c1052b-6564-4da3-9433-32d0e3a4b88e","status":"Succeeded","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"2021-06-21T12:23:23.0635878Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5eb20284-aeae-481e-8ef1-e59e6c99b073"}}' + string: '{"id":"02419016-072a-45c6-9499-7bfc50f32f7b","name":"02419016-072a-45c6-9499-7bfc50f32f7b","status":"Succeeded","startTime":"2021-07-13T12:41:59.1820993Z","endTime":"2021-07-13T12:41:59.1820993Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"30ed142f-00f8-4013-bb57-c04b057f4f23"}}' headers: cache-control: - no-cache @@ -8814,7 +8610,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:44 GMT + - Tue, 13 Jul 2021 12:42:21 GMT expires: - '-1' pragma: @@ -8830,7 +8626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '132' x-powered-by: - ASP.NET status: @@ -8850,25 +8646,25 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5eb20284-aeae-481e-8ef1-e59e6c99b073?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/30ed142f-00f8-4013-bb57-c04b057f4f23?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5eb20284-aeae-481e-8ef1-e59e6c99b073","name":"5eb20284-aeae-481e-8ef1-e59e6c99b073","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.431216S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:23:23.0635878Z","endTime":"2021-06-21T12:23:44.4948038Z","activityId":"77ed7928-d28b-11eb-a92b-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/30ed142f-00f8-4013-bb57-c04b057f4f23","name":"30ed142f-00f8-4013-bb57-c04b057f4f23","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.8166019S","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-07-13T12:41:59.1820993Z","endTime":"2021-07-13T12:42:20.9987012Z","activityId":"b51cf11a-e3d7-11eb-b5ae-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '905' + - '906' content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:44 GMT + - Tue, 13 Jul 2021 12:42:21 GMT expires: - '-1' pragma: @@ -8885,7 +8681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -8905,8 +8701,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -8922,7 +8718,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:45 GMT + - Tue, 13 Jul 2021 12:42:22 GMT expires: - '-1' pragma: @@ -8938,7 +8734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -8960,8 +8756,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -8971,17 +8767,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-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/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:23:46 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -9009,18 +8805,177 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:42: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/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:42: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/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 12:42: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/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9028,11 +8983,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:46 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9042,7 +8997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '140' x-powered-by: - ASP.NET status: @@ -9062,18 +9017,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9081,11 +9036,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:48 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9095,7 +9050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '139' x-powered-by: - ASP.NET status: @@ -9115,18 +9070,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9134,11 +9089,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:49 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9148,7 +9103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '138' x-powered-by: - ASP.NET status: @@ -9168,18 +9123,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9187,11 +9142,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:50 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9201,7 +9156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '137' x-powered-by: - ASP.NET status: @@ -9221,18 +9176,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9240,11 +9195,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:51 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9254,7 +9209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '136' x-powered-by: - ASP.NET status: @@ -9274,18 +9229,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9293,11 +9248,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:53 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9307,7 +9262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '135' x-powered-by: - ASP.NET status: @@ -9327,18 +9282,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9346,11 +9301,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:54 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9360,7 +9315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '134' x-powered-by: - ASP.NET status: @@ -9380,18 +9335,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9399,11 +9354,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:55 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9413,7 +9368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '133' x-powered-by: - ASP.NET status: @@ -9433,18 +9388,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9452,11 +9407,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:56 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9466,7 +9421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '132' x-powered-by: - ASP.NET status: @@ -9486,18 +9441,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9505,11 +9460,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:58 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9519,7 +9474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '131' x-powered-by: - ASP.NET status: @@ -9539,18 +9494,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9558,11 +9513,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:59 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9572,7 +9527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '130' x-powered-by: - ASP.NET status: @@ -9592,18 +9547,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9611,11 +9566,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:00 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9625,7 +9580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '129' x-powered-by: - ASP.NET status: @@ -9645,18 +9600,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9664,11 +9619,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:02 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9678,7 +9633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '128' x-powered-by: - ASP.NET status: @@ -9698,18 +9653,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9717,11 +9672,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:03 GMT + - Tue, 13 Jul 2021 12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9731,7 +9686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '127' x-powered-by: - ASP.NET status: @@ -9751,18 +9706,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9770,11 +9725,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:04 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9784,7 +9739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '126' x-powered-by: - ASP.NET status: @@ -9804,18 +9759,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9823,11 +9778,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:06 GMT + - Tue, 13 Jul 2021 12:42: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/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9837,7 +9792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '125' x-powered-by: - ASP.NET status: @@ -9857,18 +9812,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9876,11 +9831,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:07 GMT + - Tue, 13 Jul 2021 12: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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 pragma: - no-cache server: @@ -9890,7 +9845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '124' x-powered-by: - ASP.NET status: @@ -9910,12 +9865,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/b00ee334-c027-49fe-94b4-c973dac408e9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/58c8022d-c856-4a53-b7b7-84296da4ac95?api-version=2021-01-01 response: body: string: '' @@ -9925,7 +9880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:24:08 GMT + - Tue, 13 Jul 2021 12:42:47 GMT expires: - '-1' pragma: @@ -9935,7 +9890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '123' x-powered-by: - ASP.NET status: @@ -9955,8 +9910,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9972,7 +9927,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:25:48 GMT + - Tue, 13 Jul 2021 12:44:28 GMT expires: - '-1' pragma: @@ -9998,7 +9953,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -10010,9 +9965,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -10022,7 +9977,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:25:52 GMT + - Tue, 13 Jul 2021 12:44:32 GMT expires: - '-1' pragma: @@ -10036,4 +9991,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 90a959da6f1..04e889bb02b 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A25.5434312Z''\"","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-07-13T08%3A04%3A32.9162893Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:25 GMT + - Tue, 13 Jul 2021 08:04:32 GMT expires: - '-1' pragma: @@ -43,7 +43,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '207' + - '209' status: code: 201 message: Created @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:29.0696127Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:29.0696127Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-07-13T08:04:35.4467512Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T08:04:35.4467512Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:49 GMT + - Tue, 13 Jul 2021 08:05:00 GMT expires: - '-1' pragma: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 08:04:58 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 08:05:00 GMT etag: - - '"0x8D934AE96C188E7"' + - '"0x8D945D4E9F31E26"' last-modified: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 08:05:01 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -147,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -164,7 +164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 08:05:01 GMT expires: - '-1' pragma: @@ -180,7 +180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -189,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -209,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Tue, 13 Jul 2021 08:05:01 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -279,60 +279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17: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: - - '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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '777' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Tue, 13 Jul 2021 08:05:01 GMT expires: - '-1' pragma: @@ -342,1205 +289,18 @@ interactions: strict-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01&$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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12: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/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:17: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:17: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:17: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:17: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:17: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:18: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:18: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:18: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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-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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:18: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:18: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12: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/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12: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/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:18: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/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/da908d99-d46c-4dcd-b948-126eb377a1fa?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Mon, 21 Jun 2021 12:18:09 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: - - '126' - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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;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: - - '3273' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - 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 - Accept-Encoding: - - gzip, deflate - CommandName: - - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:18: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1555,47 +315,48 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-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;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.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.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","name":"StorageContainer;Storage;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitestmuryybtlrspyn4jxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestmuryybtlrspyn4jxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg44ebhrmnjj;clitestfneglzpl6e3cmtftf","name":"StorageContainer;Storage;clitest.rg44ebhrmnjj;clitestfneglzpl6e3cmtftf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestfneglzpl6e3cmtftf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg44ebhrmnjj/providers/Microsoft.Storage/storageAccounts/clitestfneglzpl6e3cmtftf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg46agqfkrgg;clitestsxed5iyal6p3uv4ie","name":"StorageContainer;Storage;clitest.rg46agqfkrgg;clitestsxed5iyal6p3uv4ie","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsxed5iyal6p3uv4ie","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46agqfkrgg/providers/Microsoft.Storage/storageAccounts/clitestsxed5iyal6p3uv4ie"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","name":"StorageContainer;Storage;clitest.rgw5nd6h6m7r;clitest6bh6xri22tsmwz6mx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6bh6xri22tsmwz6mx","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw5nd6h6m7r/providers/Microsoft.Storage/storageAccounts/clitest6bh6xri22tsmwz6mx"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","name":"StorageContainer;Storage;rgECY-otds-rraj;d2aseapod01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"d2aseapod01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/d2aseapod01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '19603' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:20 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' 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 @@ -1605,21 +366,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-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=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1627,11 +392,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1640,8 +405,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -1661,18 +426,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1680,11 +445,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:22 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1694,7 +459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '149' x-powered-by: - ASP.NET status: @@ -1714,18 +479,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1733,11 +498,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:23 GMT + - Tue, 13 Jul 2021 08: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/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1747,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '148' x-powered-by: - ASP.NET status: @@ -1767,18 +532,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1786,11 +551,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1800,7 +565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '147' x-powered-by: - ASP.NET status: @@ -1820,18 +585,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1839,11 +604,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:26 GMT + - Tue, 13 Jul 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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1853,7 +618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '146' x-powered-by: - ASP.NET status: @@ -1873,18 +638,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1892,11 +657,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:27 GMT + - Tue, 13 Jul 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-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1906,7 +671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '145' x-powered-by: - ASP.NET status: @@ -1926,18 +691,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1945,11 +710,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:28 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -1959,7 +724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '144' x-powered-by: - ASP.NET status: @@ -1979,18 +744,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1998,11 +763,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2012,7 +777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '143' x-powered-by: - ASP.NET status: @@ -2032,18 +797,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2051,11 +816,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:31 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2065,7 +830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '142' x-powered-by: - ASP.NET status: @@ -2085,18 +850,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2104,11 +869,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:32 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2118,7 +883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '141' x-powered-by: - ASP.NET status: @@ -2138,18 +903,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2157,11 +922,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:33 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2171,7 +936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '140' x-powered-by: - ASP.NET status: @@ -2191,18 +956,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2210,11 +975,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:35 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2224,7 +989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '139' x-powered-by: - ASP.NET status: @@ -2244,18 +1009,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2263,11 +1028,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:36 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2277,7 +1042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '138' x-powered-by: - ASP.NET status: @@ -2297,18 +1062,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2316,11 +1081,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:37 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2330,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '137' x-powered-by: - ASP.NET status: @@ -2350,18 +1115,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2369,11 +1134,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:38 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2383,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '136' x-powered-by: - ASP.NET status: @@ -2403,18 +1168,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2422,11 +1187,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Tue, 13 Jul 2021 08: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2436,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '135' x-powered-by: - ASP.NET status: @@ -2456,18 +1221,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2475,11 +1240,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:41 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2489,7 +1254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '134' x-powered-by: - ASP.NET status: @@ -2509,18 +1274,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2528,11 +1293,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:42 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2542,7 +1307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '133' x-powered-by: - ASP.NET status: @@ -2562,18 +1327,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2581,11 +1346,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:44 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2595,7 +1360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '132' x-powered-by: - ASP.NET status: @@ -2615,18 +1380,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2634,11 +1399,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:45 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2648,7 +1413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '131' x-powered-by: - ASP.NET status: @@ -2668,18 +1433,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2687,11 +1452,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2701,7 +1466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '130' x-powered-by: - ASP.NET status: @@ -2721,18 +1486,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2740,11 +1505,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:48 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2754,7 +1519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '129' x-powered-by: - ASP.NET status: @@ -2774,18 +1539,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2793,11 +1558,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:49 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2807,7 +1572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '128' x-powered-by: - ASP.NET status: @@ -2827,18 +1592,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2846,11 +1611,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:50 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2860,7 +1625,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '127' x-powered-by: - ASP.NET status: @@ -2880,18 +1645,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2899,11 +1664,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:51 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2913,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '126' x-powered-by: - ASP.NET status: @@ -2933,18 +1698,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2952,11 +1717,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -2966,7 +1731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '125' x-powered-by: - ASP.NET status: @@ -2986,18 +1751,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3005,11 +1770,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:54 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3019,7 +1784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '124' x-powered-by: - ASP.NET status: @@ -3039,18 +1804,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3058,11 +1823,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:55 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3072,7 +1837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '123' x-powered-by: - ASP.NET status: @@ -3092,18 +1857,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3111,11 +1876,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:56 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3125,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '122' x-powered-by: - ASP.NET status: @@ -3145,18 +1910,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3164,11 +1929,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:57 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3178,7 +1943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '121' x-powered-by: - ASP.NET status: @@ -3198,18 +1963,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3217,11 +1982,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:59 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3231,7 +1996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '120' x-powered-by: - ASP.NET status: @@ -3251,18 +2016,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3270,11 +2035,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:00 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3284,7 +2049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '119' x-powered-by: - ASP.NET status: @@ -3304,18 +2069,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3323,11 +2088,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3337,7 +2102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '118' x-powered-by: - ASP.NET status: @@ -3357,18 +2122,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3376,11 +2141,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:02 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3390,7 +2155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '117' x-powered-by: - ASP.NET status: @@ -3410,18 +2175,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3429,11 +2194,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:03 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3443,7 +2208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '116' x-powered-by: - ASP.NET status: @@ -3463,18 +2228,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3482,11 +2247,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:05 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3496,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '115' x-powered-by: - ASP.NET status: @@ -3516,18 +2281,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3535,11 +2300,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:06 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3549,7 +2314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '114' x-powered-by: - ASP.NET status: @@ -3569,18 +2334,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3588,11 +2353,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3602,7 +2367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '113' x-powered-by: - ASP.NET status: @@ -3622,18 +2387,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3641,11 +2406,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3655,7 +2420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '112' x-powered-by: - ASP.NET status: @@ -3675,18 +2440,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3694,11 +2459,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:10 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3708,7 +2473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '111' x-powered-by: - ASP.NET status: @@ -3728,18 +2493,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3747,11 +2512,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:11 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3761,7 +2526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '110' x-powered-by: - ASP.NET status: @@ -3781,18 +2546,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3800,11 +2565,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3814,7 +2579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '109' x-powered-by: - ASP.NET status: @@ -3834,18 +2599,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3853,11 +2618,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:13 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3867,7 +2632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '108' x-powered-by: - ASP.NET status: @@ -3887,18 +2652,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3906,11 +2671,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:15 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3920,7 +2685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '107' x-powered-by: - ASP.NET status: @@ -3940,18 +2705,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3959,11 +2724,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:16 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -3973,7 +2738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '106' x-powered-by: - ASP.NET status: @@ -3993,18 +2758,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4012,11 +2777,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:17 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4026,7 +2791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '105' x-powered-by: - ASP.NET status: @@ -4046,18 +2811,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4065,11 +2830,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:18 GMT + - Tue, 13 Jul 2021 08:05: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4079,7 +2844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '104' x-powered-by: - ASP.NET status: @@ -4099,18 +2864,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4118,11 +2883,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:19 GMT + - Tue, 13 Jul 2021 08:06: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/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4132,7 +2897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '103' x-powered-by: - ASP.NET status: @@ -4152,45 +2917,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7196b47-cc4e-4ee1-a3d9-525d99ceb085?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 08:06: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/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '102' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4205,45 +2970,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-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/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 08:06: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/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '101' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4255,41 +3020,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 08:06: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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -4309,18 +3076,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4328,11 +3095,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Tue, 13 Jul 2021 08:06: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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4342,7 +3109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '99' x-powered-by: - ASP.NET status: @@ -4362,18 +3129,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4381,11 +3148,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:23 GMT + - Tue, 13 Jul 2021 08:06: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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4395,7 +3162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '98' x-powered-by: - ASP.NET status: @@ -4415,18 +3182,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4434,11 +3201,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:24 GMT + - Tue, 13 Jul 2021 08:06: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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4448,7 +3215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '97' x-powered-by: - ASP.NET status: @@ -4468,18 +3235,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4487,11 +3254,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:26 GMT + - Tue, 13 Jul 2021 08:06: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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4501,7 +3268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '96' x-powered-by: - ASP.NET status: @@ -4521,18 +3288,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4540,11 +3307,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:27 GMT + - Tue, 13 Jul 2021 08:06: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/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-01 pragma: - no-cache server: @@ -4554,7 +3321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '95' x-powered-by: - ASP.NET status: @@ -4574,37 +3341,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f3ff72b0-5819-4568-a433-0debc8a41e3a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bbddada1-e47c-4828-b09b-feee0b72d46a?api-version=2021-01-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: cache-control: - no-cache + content-length: + - '790' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Tue, 13 Jul 2021 08: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: - - '83' + - '94' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -4619,24 +3394,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1","name":"azurefileshare;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1039' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 08:06:12 GMT expires: - '-1' pragma: @@ -4652,7 +3427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -4669,52 +3444,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 + 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=2021-01-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Tue, 13 Jul 2021 08:06: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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' 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.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 @@ -4724,43 +3495,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1?api-version=2021-01-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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-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;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1/operationsStatus/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Tue, 13 Jul 2021 08:06: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/protectedItems/azurefileshare;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1/operationResults/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -4780,45 +3551,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:30 GMT + - Tue, 13 Jul 2021 08:06: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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '123' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4833,45 +3604,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:31 GMT + - Tue, 13 Jul 2021 08:06: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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4886,45 +3657,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:33 GMT + - Tue, 13 Jul 2021 08:06: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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4939,45 +3710,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:34 GMT + - Tue, 13 Jul 2021 08: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/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4992,45 +3763,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7b4dad90-a689-44c9-999f-6032f503f486?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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: - - Mon, 21 Jun 2021 12:19:35 GMT + - Tue, 13 Jul 2021 08: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-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '119' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -5045,24 +3808,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62","name":"azurefileshare;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62","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: - - Mon, 21 Jun 2021 12:19:37 GMT + - Tue, 13 Jul 2021 08:06:20 GMT expires: - '-1' pragma: @@ -5078,7 +3841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -5098,24 +3861,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:38 GMT + - Tue, 13 Jul 2021 08:06:21 GMT expires: - '-1' pragma: @@ -5131,14 +3894,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '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 @@ -5148,48 +3913,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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-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%3Bc9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","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;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62/operationsStatus/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:39 GMT + - Tue, 13 Jul 2021 08:06: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;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62/operationResults/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + 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: @@ -5204,15 +3969,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5221,7 +3986,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:40 GMT + - Tue, 13 Jul 2021 08:06:21 GMT expires: - '-1' pragma: @@ -5237,7 +4002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '122' x-powered-by: - ASP.NET status: @@ -5257,15 +4022,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5274,7 +4039,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:42 GMT + - Tue, 13 Jul 2021 08:06:23 GMT expires: - '-1' pragma: @@ -5290,7 +4055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '121' x-powered-by: - ASP.NET status: @@ -5310,15 +4075,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5327,7 +4092,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Tue, 13 Jul 2021 08:06:24 GMT expires: - '-1' pragma: @@ -5343,7 +4108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '120' x-powered-by: - ASP.NET status: @@ -5363,15 +4128,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5380,7 +4145,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:44 GMT + - Tue, 13 Jul 2021 08:06:25 GMT expires: - '-1' pragma: @@ -5396,7 +4161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '119' x-powered-by: - ASP.NET status: @@ -5416,15 +4181,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5433,7 +4198,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Tue, 13 Jul 2021 08:06:26 GMT expires: - '-1' pragma: @@ -5449,7 +4214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '118' x-powered-by: - ASP.NET status: @@ -5469,15 +4234,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5486,7 +4251,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:46 GMT + - Tue, 13 Jul 2021 08:06:27 GMT expires: - '-1' pragma: @@ -5502,7 +4267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '117' x-powered-by: - ASP.NET status: @@ -5522,15 +4287,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5539,7 +4304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:48 GMT + - Tue, 13 Jul 2021 08:06:29 GMT expires: - '-1' pragma: @@ -5555,7 +4320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '116' x-powered-by: - ASP.NET status: @@ -5575,15 +4340,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5592,7 +4357,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Tue, 13 Jul 2021 08:06:30 GMT expires: - '-1' pragma: @@ -5608,7 +4373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '115' x-powered-by: - ASP.NET status: @@ -5628,15 +4393,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5645,7 +4410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:50 GMT + - Tue, 13 Jul 2021 08:06:31 GMT expires: - '-1' pragma: @@ -5661,7 +4426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '114' x-powered-by: - ASP.NET status: @@ -5681,15 +4446,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5698,7 +4463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:51 GMT + - Tue, 13 Jul 2021 08:06:32 GMT expires: - '-1' pragma: @@ -5714,7 +4479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '113' x-powered-by: - ASP.NET status: @@ -5734,15 +4499,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5751,7 +4516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:53 GMT + - Tue, 13 Jul 2021 08:06:34 GMT expires: - '-1' pragma: @@ -5767,7 +4532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '112' x-powered-by: - ASP.NET status: @@ -5787,15 +4552,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5804,7 +4569,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Tue, 13 Jul 2021 08:06:35 GMT expires: - '-1' pragma: @@ -5820,7 +4585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '111' x-powered-by: - ASP.NET status: @@ -5840,15 +4605,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5857,7 +4622,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Tue, 13 Jul 2021 08:06:36 GMT expires: - '-1' pragma: @@ -5873,7 +4638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '110' x-powered-by: - ASP.NET status: @@ -5893,15 +4658,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5910,7 +4675,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:56 GMT + - Tue, 13 Jul 2021 08:06:37 GMT expires: - '-1' pragma: @@ -5926,7 +4691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '109' x-powered-by: - ASP.NET status: @@ -5946,15 +4711,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5963,7 +4728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:57 GMT + - Tue, 13 Jul 2021 08:06:38 GMT expires: - '-1' pragma: @@ -5979,7 +4744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '108' x-powered-by: - ASP.NET status: @@ -5999,15 +4764,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6016,7 +4781,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Tue, 13 Jul 2021 08:06:40 GMT expires: - '-1' pragma: @@ -6032,7 +4797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '107' x-powered-by: - ASP.NET status: @@ -6052,15 +4817,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6069,7 +4834,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:00 GMT + - Tue, 13 Jul 2021 08:06:41 GMT expires: - '-1' pragma: @@ -6085,7 +4850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '106' x-powered-by: - ASP.NET status: @@ -6105,15 +4870,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6122,7 +4887,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Tue, 13 Jul 2021 08:06:42 GMT expires: - '-1' pragma: @@ -6138,7 +4903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '105' x-powered-by: - ASP.NET status: @@ -6158,15 +4923,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6175,7 +4940,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:02 GMT + - Tue, 13 Jul 2021 08:06:43 GMT expires: - '-1' pragma: @@ -6191,7 +4956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '104' x-powered-by: - ASP.NET status: @@ -6211,15 +4976,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6228,7 +4993,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:03 GMT + - Tue, 13 Jul 2021 08:06:44 GMT expires: - '-1' pragma: @@ -6244,7 +5009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '103' x-powered-by: - ASP.NET status: @@ -6264,15 +5029,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6281,7 +5046,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:05 GMT + - Tue, 13 Jul 2021 08:06:46 GMT expires: - '-1' pragma: @@ -6297,7 +5062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '102' x-powered-by: - ASP.NET status: @@ -6317,15 +5082,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6334,7 +5099,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Tue, 13 Jul 2021 08:06:47 GMT expires: - '-1' pragma: @@ -6350,7 +5115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '101' x-powered-by: - ASP.NET status: @@ -6370,15 +5135,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6387,7 +5152,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Tue, 13 Jul 2021 08:06:48 GMT expires: - '-1' pragma: @@ -6403,7 +5168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '100' x-powered-by: - ASP.NET status: @@ -6423,15 +5188,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6440,7 +5205,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:09 GMT + - Tue, 13 Jul 2021 08:06:49 GMT expires: - '-1' pragma: @@ -6456,7 +5221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '99' x-powered-by: - ASP.NET status: @@ -6476,15 +5241,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6493,7 +5258,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:10 GMT + - Tue, 13 Jul 2021 08:06:52 GMT expires: - '-1' pragma: @@ -6509,7 +5274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '98' x-powered-by: - ASP.NET status: @@ -6529,15 +5294,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"InProgress","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"InProgress","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6546,7 +5311,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Tue, 13 Jul 2021 08:06:53 GMT expires: - '-1' pragma: @@ -6562,7 +5327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '97' x-powered-by: - ASP.NET status: @@ -6582,15 +5347,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/266183de-6ef7-421c-a1e0-8fbe49fbb9a6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1faea18-c51e-4369-bb2d-81ee098bbc64?api-version=2021-01-01 response: body: - string: '{"id":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","name":"266183de-6ef7-421c-a1e0-8fbe49fbb9a6","status":"Succeeded","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"2021-06-21T12:19:30.4880351Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"99b197e6-e7de-4000-b82f-78b656fc9866"}}' + string: '{"id":"f1faea18-c51e-4369-bb2d-81ee098bbc64","name":"f1faea18-c51e-4369-bb2d-81ee098bbc64","status":"Succeeded","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"2021-07-13T08:06:21.7754001Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"019db1a8-ce58-4315-bfb4-8efc03a87b9a"}}' headers: cache-control: - no-cache @@ -6599,7 +5364,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:13 GMT + - Tue, 13 Jul 2021 08:06:54 GMT expires: - '-1' pragma: @@ -6615,7 +5380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '96' x-powered-by: - ASP.NET status: @@ -6635,17 +5400,17 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99b197e6-e7de-4000-b82f-78b656fc9866?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/019db1a8-ce58-4315-bfb4-8efc03a87b9a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99b197e6-e7de-4000-b82f-78b656fc9866","name":"99b197e6-e7de-4000-b82f-78b656fc9866","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.9517582S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/019db1a8-ce58-4315-bfb4-8efc03a87b9a","name":"019db1a8-ce58-4315-bfb4-8efc03a87b9a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.4129678S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:19:30.4880351Z","endTime":"2021-06-21T12:20:12.4397933Z","activityId":"b34d591c-d28a-11eb-949e-c8f750f92764"}}' + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:06:21.7754001Z","endTime":"2021-07-13T08:06:54.1883679Z","activityId":"05293eb6-e3b1-11eb-adf6-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6654,7 +5419,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:13 GMT + - Tue, 13 Jul 2021 08:06:54 GMT expires: - '-1' pragma: @@ -6691,8 +5456,8 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -6708,7 +5473,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:13 GMT + - Tue, 13 Jul 2021 08:06:54 GMT expires: - '-1' pragma: @@ -6724,7 +5489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -6744,15 +5509,15 @@ interactions: ParameterSetName: - -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01 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;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1","name":"AzureFileShare;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62","name":"AzureFileShare;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6761,7 +5526,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Tue, 13 Jul 2021 08:06:55 GMT expires: - '-1' pragma: @@ -6797,24 +5562,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.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%3B34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bc9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1","name":"AzureFileShare;34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1","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-06-21T12:20:12.214933Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}' + string: '{"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;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62","name":"AzureFileShare;c9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62","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-07-13T08:06:53.9383611Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1486' + - '1487' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Tue, 13 Jul 2021 08:06:56 GMT expires: - '-1' pragma: @@ -6852,28 +5617,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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%3B34356c14c7eb77dee96d9b3e8d3fef348050437d97428c491821ba86b1ebf4c1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bc9702f0dfa5c32a0f774af51990850fb77cb30ee28d030936b7d4a7f6c337f62?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Tue, 13 Jul 2021 08:06:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -6901,15 +5666,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6918,7 +5683,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Tue, 13 Jul 2021 08:06:57 GMT expires: - '-1' pragma: @@ -6934,7 +5699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -6954,15 +5719,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6971,7 +5736,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:16 GMT + - Tue, 13 Jul 2021 08:06:58 GMT expires: - '-1' pragma: @@ -6987,7 +5752,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -7007,15 +5772,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7024,7 +5789,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:18 GMT + - Tue, 13 Jul 2021 08:06:59 GMT expires: - '-1' pragma: @@ -7040,7 +5805,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -7060,15 +5825,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7077,7 +5842,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:19 GMT + - Tue, 13 Jul 2021 08:07:01 GMT expires: - '-1' pragma: @@ -7093,7 +5858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -7113,15 +5878,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7130,7 +5895,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:20 GMT + - Tue, 13 Jul 2021 08:07:02 GMT expires: - '-1' pragma: @@ -7146,7 +5911,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -7166,15 +5931,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7183,7 +5948,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:21 GMT + - Tue, 13 Jul 2021 08:07:03 GMT expires: - '-1' pragma: @@ -7199,7 +5964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -7219,15 +5984,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7236,7 +6001,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:22 GMT + - Tue, 13 Jul 2021 08:07:04 GMT expires: - '-1' pragma: @@ -7252,7 +6017,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '141' x-powered-by: - ASP.NET status: @@ -7272,15 +6037,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7289,7 +6054,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:24 GMT + - Tue, 13 Jul 2021 08:07:06 GMT expires: - '-1' pragma: @@ -7305,7 +6070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: @@ -7325,15 +6090,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7342,7 +6107,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:25 GMT + - Tue, 13 Jul 2021 08:07:07 GMT expires: - '-1' pragma: @@ -7358,7 +6123,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '139' x-powered-by: - ASP.NET status: @@ -7378,15 +6143,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7395,7 +6160,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:26 GMT + - Tue, 13 Jul 2021 08:07:08 GMT expires: - '-1' pragma: @@ -7411,7 +6176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '138' x-powered-by: - ASP.NET status: @@ -7431,15 +6196,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7448,7 +6213,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:27 GMT + - Tue, 13 Jul 2021 08:07:09 GMT expires: - '-1' pragma: @@ -7464,7 +6229,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '137' x-powered-by: - ASP.NET status: @@ -7484,15 +6249,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7501,7 +6266,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:28 GMT + - Tue, 13 Jul 2021 08:07:11 GMT expires: - '-1' pragma: @@ -7517,7 +6282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '136' x-powered-by: - ASP.NET status: @@ -7537,15 +6302,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7554,7 +6319,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:30 GMT + - Tue, 13 Jul 2021 08:07:12 GMT expires: - '-1' pragma: @@ -7570,7 +6335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '135' x-powered-by: - ASP.NET status: @@ -7590,15 +6355,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7607,7 +6372,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:31 GMT + - Tue, 13 Jul 2021 08:07:13 GMT expires: - '-1' pragma: @@ -7623,7 +6388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '134' x-powered-by: - ASP.NET status: @@ -7643,15 +6408,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7660,7 +6425,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:32 GMT + - Tue, 13 Jul 2021 08:07:14 GMT expires: - '-1' pragma: @@ -7676,7 +6441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '133' x-powered-by: - ASP.NET status: @@ -7696,15 +6461,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7713,7 +6478,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:33 GMT + - Tue, 13 Jul 2021 08:07:15 GMT expires: - '-1' pragma: @@ -7729,7 +6494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '132' x-powered-by: - ASP.NET status: @@ -7749,15 +6514,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7766,7 +6531,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:34 GMT + - Tue, 13 Jul 2021 08:07:17 GMT expires: - '-1' pragma: @@ -7782,7 +6547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '131' x-powered-by: - ASP.NET status: @@ -7802,15 +6567,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"InProgress","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"InProgress","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7819,7 +6584,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:37 GMT + - Tue, 13 Jul 2021 08:07:18 GMT expires: - '-1' pragma: @@ -7835,7 +6600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '130' x-powered-by: - ASP.NET status: @@ -7855,15 +6620,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7a31c13f-7389-4645-8b53-5d7209987f30?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/786c0e2c-e8b1-428b-986a-85d6479b2123?api-version=2021-01-01 response: body: - string: '{"id":"7a31c13f-7389-4645-8b53-5d7209987f30","name":"7a31c13f-7389-4645-8b53-5d7209987f30","status":"Succeeded","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"2021-06-21T12:20:15.7330277Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a0557f69-6177-4ea1-960c-739e98a0b15f"}}' + string: '{"id":"786c0e2c-e8b1-428b-986a-85d6479b2123","name":"786c0e2c-e8b1-428b-986a-85d6479b2123","status":"Succeeded","startTime":"2021-07-13T08:06:57.4365682Z","endTime":"2021-07-13T08:06:57.4365682Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"12ef676b-3575-4bab-87d5-9ff018b4954a"}}' headers: cache-control: - no-cache @@ -7872,7 +6637,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Tue, 13 Jul 2021 08:07:19 GMT expires: - '-1' pragma: @@ -7888,7 +6653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '129' x-powered-by: - ASP.NET status: @@ -7908,16 +6673,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0557f69-6177-4ea1-960c-739e98a0b15f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/12ef676b-3575-4bab-87d5-9ff018b4954a?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0557f69-6177-4ea1-960c-739e98a0b15f","name":"a0557f69-6177-4ea1-960c-739e98a0b15f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.4546991S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:20:15.7330277Z","endTime":"2021-06-21T12:20:37.1877268Z","activityId":"080a45e3-d28b-11eb-b805-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/12ef676b-3575-4bab-87d5-9ff018b4954a","name":"12ef676b-3575-4bab-87d5-9ff018b4954a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.7096499S","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-07-13T08:06:57.4365682Z","endTime":"2021-07-13T08:07:19.1462181Z","activityId":"4916287a-e3b1-11eb-a02a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7926,7 +6691,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Tue, 13 Jul 2021 08:07:19 GMT expires: - '-1' pragma: @@ -7943,7 +6708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '149' x-powered-by: - ASP.NET status: @@ -7965,8 +6730,8 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -7976,17 +6741,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-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/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/23883814-8de1-47ad-a99d-49053d27d369?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8014,18 +6779,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8033,11 +6798,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8047,7 +6812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '120' x-powered-by: - ASP.NET status: @@ -8067,18 +6832,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8086,11 +6851,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:39 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8100,7 +6865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '119' x-powered-by: - ASP.NET status: @@ -8120,18 +6885,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8139,11 +6904,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:41 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8153,7 +6918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '118' x-powered-by: - ASP.NET status: @@ -8173,18 +6938,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8192,11 +6957,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:43 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8206,7 +6971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '117' x-powered-by: - ASP.NET status: @@ -8226,18 +6991,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8245,11 +7010,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:44 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8259,7 +7024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '116' x-powered-by: - ASP.NET status: @@ -8279,18 +7044,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8298,11 +7063,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:45 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8312,7 +7077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '115' x-powered-by: - ASP.NET status: @@ -8332,18 +7097,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8351,11 +7116,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:47 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8365,7 +7130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '114' x-powered-by: - ASP.NET status: @@ -8385,18 +7150,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8404,11 +7169,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:48 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8418,7 +7183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '113' x-powered-by: - ASP.NET status: @@ -8438,18 +7203,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8457,11 +7222,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:49 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8471,7 +7236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '112' x-powered-by: - ASP.NET status: @@ -8491,18 +7256,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8510,11 +7275,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:50 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8524,7 +7289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '111' x-powered-by: - ASP.NET status: @@ -8544,18 +7309,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8563,11 +7328,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:52 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8577,7 +7342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '110' x-powered-by: - ASP.NET status: @@ -8597,18 +7362,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8616,11 +7381,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:53 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8630,7 +7395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '109' x-powered-by: - ASP.NET status: @@ -8650,18 +7415,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8669,11 +7434,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:54 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8683,7 +7448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '108' x-powered-by: - ASP.NET status: @@ -8703,18 +7468,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8722,11 +7487,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:55 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8736,7 +7501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '107' x-powered-by: - ASP.NET status: @@ -8756,18 +7521,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8775,11 +7540,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:56 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8789,7 +7554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '106' x-powered-by: - ASP.NET status: @@ -8809,18 +7574,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8828,11 +7593,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:58 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8842,7 +7607,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '105' x-powered-by: - ASP.NET status: @@ -8862,18 +7627,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8881,11 +7646,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:59 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8895,7 +7660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '104' x-powered-by: - ASP.NET status: @@ -8915,18 +7680,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/23883814-8de1-47ad-a99d-49053d27d369?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8934,11 +7699,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:00 GMT + - Tue, 13 Jul 2021 08:07: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/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 pragma: - no-cache server: @@ -8948,7 +7713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '103' x-powered-by: - ASP.NET status: @@ -8968,12 +7733,12 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/aa36f375-f646-4045-8920-d81b3daba6e6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/23883814-8de1-47ad-a99d-49053d27d369?api-version=2021-01-01 response: body: string: '' @@ -8983,7 +7748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:21:01 GMT + - Tue, 13 Jul 2021 08:07:43 GMT expires: - '-1' pragma: @@ -8993,7 +7758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '102' x-powered-by: - ASP.NET status: @@ -9013,8 +7778,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9030,7 +7795,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Tue, 13 Jul 2021 08:07:44 GMT expires: - '-1' pragma: @@ -9046,7 +7811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -9066,8 +7831,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9083,7 +7848,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:42 GMT + - Tue, 13 Jul 2021 08:09:25 GMT expires: - '-1' pragma: @@ -9099,7 +7864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -9109,7 +7874,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9121,9 +7886,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -9133,7 +7898,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:22:47 GMT + - Tue, 13 Jul 2021 08:09:57 GMT expires: - '-1' pragma: @@ -9147,4 +7912,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml index a8cd3a4c49a..0712b08cce5 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml @@ -17,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-23T11%3A57%3A13.2329271Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T16%3A07%3A45.7664247Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:57:13 GMT + - Tue, 13 Jul 2021 16:07:45 GMT expires: - '-1' pragma: @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:57:13 GMT + - Tue, 13 Jul 2021 16:07:46 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:57:14 GMT + - Tue, 13 Jul 2021 16:07:46 GMT expires: - '-1' pragma: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-23T11:57:05Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-07-13T16:07:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:57:15 GMT + - Tue, 13 Jul 2021 16:07:48 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Wed, 23 Jun 2021 11:57:16 GMT + - Tue, 13 Jul 2021 16:07:48 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Wed, 23 Jun 2021 12:02:16 GMT + - Tue, 13 Jul 2021 16:12:48 GMT source-age: - - '70' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -285,15 +286,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 60af8bba926694964999b982103e1aa8cbf7662d + - 95756687af8c7596c8c8585a29dcdc81c20a773d x-frame-options: - deny x-github-request-id: - - AF40:0CFC:5D485:6F69E:60D23687 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1236-QPG + - cache-qpg1271-QPG x-timer: - - S1624449437.513646,VS0,VE1 + - S1626192468.481917,VS0,VE308 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:57:16 GMT + - Tue, 13 Jul 2021 16:07:48 GMT expires: - '-1' pragma: @@ -395,15 +396,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","name":"vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6942364091035901552","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-23T11:57:18.7956081Z","duration":"PT1.2742644S","correlationId":"62643115-4c49-476e-be14-590d526b0a3e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southeastasia"]},{"resourceType":"networkSecurityGroups","locations":["southeastasia"]},{"resourceType":"publicIPAddresses","locations":["southeastasia"]},{"resourceType":"networkInterfaces","locations":["southeastasia"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["southeastasia"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Ml4DtXUIPTVlVIIiilxnAmWsstEiPbkr","name":"vm_deploy_Ml4DtXUIPTVlVIIiilxnAmWsstEiPbkr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4383550872585052090","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T16:07:50.8528104Z","duration":"PT1.0142624S","correlationId":"224c9307-c5b4-4e7d-9026-c6f5fa931202","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southeastasia"]},{"resourceType":"networkSecurityGroups","locations":["southeastasia"]},{"resourceType":"publicIPAddresses","locations":["southeastasia"]},{"resourceType":"networkInterfaces","locations":["southeastasia"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["southeastasia"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b/operationStatuses/08585771574479562948?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Ml4DtXUIPTVlVIIiilxnAmWsstEiPbkr/operationStatuses/08585754144156390889?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -411,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:57:18 GMT + - Tue, 13 Jul 2021 16:07:50 GMT expires: - '-1' pragma: @@ -439,9 +440,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585771574479562948?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754144156390889?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:57:48 GMT + - Tue, 13 Jul 2021 16:08:20 GMT expires: - '-1' pragma: @@ -481,51 +482,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585771574479562948?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 23 Jun 2021 11:58:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --admin-password --tags --nsg-rule - User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585771574479562948?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754144156390889?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -537,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:58:48 GMT + - Tue, 13 Jul 2021 16:08:51 GMT expires: - '-1' pragma: @@ -565,21 +524,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","name":"vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6942364091035901552","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-23T11:58:37.5192723Z","duration":"PT1M19.9979286S","correlationId":"62643115-4c49-476e-be14-590d526b0a3e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southeastasia"]},{"resourceType":"networkSecurityGroups","locations":["southeastasia"]},{"resourceType":"publicIPAddresses","locations":["southeastasia"]},{"resourceType":"networkInterfaces","locations":["southeastasia"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["southeastasia"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Ml4DtXUIPTVlVIIiilxnAmWsstEiPbkr","name":"vm_deploy_Ml4DtXUIPTVlVIIiilxnAmWsstEiPbkr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4383550872585052090","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T16:08:43.1050026Z","duration":"PT53.2664546S","correlationId":"224c9307-c5b4-4e7d-9026-c6f5fa931202","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southeastasia"]},{"resourceType":"networkSecurityGroups","locations":["southeastasia"]},{"resourceType":"publicIPAddresses","locations":["southeastasia"]},{"resourceType":"networkInterfaces","locations":["southeastasia"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["southeastasia"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4087' + - '4085' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:58:49 GMT + - Tue, 13 Jul 2021 16:08:51 GMT expires: - '-1' pragma: @@ -607,7 +566,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -616,16 +575,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\": \"01bc7508-e31c-47ca-94f1-a0f6dcf6eeb0\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9930e477-700f-454b-ad84-19c1ec7011e6\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_4159451c32774825a92f727211a7f204\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_4159451c32774825a92f727211a7f204\"\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\": @@ -639,16 +598,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\": \"2021-06-23T11:58:50+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T16:08:52+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\",\r\n \"statuses\": + \"clitest-vm000003_disk1_4159451c32774825a92f727211a7f204\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-23T11:57:31.5641355+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T16:08:14.8016953+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-23T11:58:36.5960792+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T16:08:39.6921807+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}" @@ -656,11 +615,11 @@ interactions: cache-control: - no-cache content-length: - - '3473' + - '3464' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:58:50 GMT + - Tue, 13 Jul 2021 16:08:51 GMT expires: - '-1' pragma: @@ -677,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31991 status: code: 200 message: OK @@ -695,20 +654,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\",\r\n - \ \"etag\": \"W/\\\"1b7f279f-ea1d-466e-97e6-c96841683283\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"beda5eef-d72b-4d7c-8100-7240d9259b55\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n \ \"AutoShutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"099b0cb3-19c0-4a8b-ae48-9c80a86654c1\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"855218a7-0b58-4cdf-8617-7629c7cede2e\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000003\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic/ipConfigurations/ipconfigclitest-vm000003\",\r\n - \ \"etag\": \"W/\\\"1b7f279f-ea1d-466e-97e6-c96841683283\\\"\",\r\n + \ \"etag\": \"W/\\\"beda5eef-d72b-4d7c-8100-7240d9259b55\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -717,8 +676,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\": - \"xjwa1ptwdryufk3pkftoxpgora.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C8-7A-F8\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"fyrz31nmfmduzlzkqbnepnquah.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-A2-CF-39\",\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\": @@ -732,9 +691,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:58:50 GMT + - Tue, 13 Jul 2021 16:08:51 GMT etag: - - W/"1b7f279f-ea1d-466e-97e6-c96841683283" + - W/"beda5eef-d72b-4d7c-8100-7240d9259b55" expires: - '-1' pragma: @@ -751,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b65b654-05a0-4b0e-8739-2c5a2391073d + - a2a5351e-0b15-43bf-a3e3-d91f0f4c4b41 status: code: 200 message: OK @@ -769,19 +728,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP\",\r\n - \ \"etag\": \"W/\\\"d8edaa93-899a-423c-a8af-383b2fc16955\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"256db0e2-a861-4b5f-87c2-e9bfb8a7d3c6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n \ \"AutoShutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b82e666b-89f5-46b0-94fe-1aa9bc7da197\",\r\n - \ \"ipAddress\": \"137.116.145.40\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"36af4706-c92a-4e80-88c5-356913715681\",\r\n + \ \"ipAddress\": \"23.97.53.18\",\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}" @@ -789,13 +748,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1180' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:58:50 GMT + - Tue, 13 Jul 2021 16:08:51 GMT etag: - - W/"d8edaa93-899a-423c-a8af-383b2fc16955" + - W/"256db0e2-a861-4b5f-87c2-e9bfb8a7d3c6" expires: - '-1' pragma: @@ -812,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 78ec567f-9af5-492c-85d8-0c89afa56838 + - 38f1dc6b-8ade-41a1-8b34-763afece8595 status: code: 200 message: OK @@ -830,7 +789,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -839,16 +798,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\": \"01bc7508-e31c-47ca-94f1-a0f6dcf6eeb0\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9930e477-700f-454b-ad84-19c1ec7011e6\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_4159451c32774825a92f727211a7f204\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_4159451c32774825a92f727211a7f204\"\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\": @@ -862,11 +821,11 @@ interactions: cache-control: - no-cache content-length: - - '2255' + - '2249' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 11:58:50 GMT + - Tue, 13 Jul 2021 16:08:52 GMT expires: - '-1' pragma: @@ -883,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31968 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31990 status: code: 200 message: OK @@ -901,12 +860,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-23T11%3A57%3A13.2329271Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T16%3A07%3A45.7664247Z''\"","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 @@ -915,7 +874,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:58:51 GMT + - Tue, 13 Jul 2021 16:08:52 GMT expires: - '-1' pragma: @@ -947,15 +906,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-23T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-23T21:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + 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-07-14T02:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T02:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -964,7 +923,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:58:52 GMT + - Tue, 13 Jul 2021 16:08:53 GMT expires: - '-1' pragma: @@ -1000,24 +959,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '5751' + - '3231' content-type: - application/json date: - - Wed, 23 Jun 2021 11:58:53 GMT + - Tue, 13 Jul 2021 16:08:54 GMT expires: - '-1' pragma: @@ -1055,8 +1014,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -1066,17 +1025,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2019-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/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 23 Jun 2021 11:58:53 GMT + - Tue, 13 Jul 2021 16:08:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1104,12 +1063,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1119,11 +1078,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:58:54 GMT + - Tue, 13 Jul 2021 16:08:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1151,12 +1110,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1166,11 +1125,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:58:55 GMT + - Tue, 13 Jul 2021 16:08:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1198,12 +1157,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1213,11 +1172,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:58:57 GMT + - Tue, 13 Jul 2021 16:08:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1245,12 +1204,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1260,11 +1219,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:58:58 GMT + - Tue, 13 Jul 2021 16:08:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1292,12 +1251,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1307,11 +1266,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:58:59 GMT + - Tue, 13 Jul 2021 16:09:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1339,12 +1298,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1354,11 +1313,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:59:00 GMT + - Tue, 13 Jul 2021 16:09:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1386,12 +1345,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1401,11 +1360,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:59:01 GMT + - Tue, 13 Jul 2021 16:09:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1433,12 +1392,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1448,11 +1407,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:59:03 GMT + - Tue, 13 Jul 2021 16:09:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1480,12 +1439,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' @@ -1495,11 +1454,11 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 11:59:04 GMT + - Tue, 13 Jul 2021 16:09: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/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1527,22 +1486,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 23 Jun 2021 11:59:05 GMT + - Tue, 13 Jul 2021 16:09: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/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1553,6 +1516,49 @@ interactions: - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/f59003a5-4271-42aa-b04c-debf39f01070?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Tue, 13 Jul 2021 16:09: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: + - '139' + x-powered-by: + - ASP.NET status: code: 204 message: No Content @@ -1570,24 +1576,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '4491' content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:07 GMT + - Tue, 13 Jul 2021 16:09:08 GMT expires: - '-1' pragma: @@ -1629,8 +1635,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -1640,17 +1646,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 23 Jun 2021 11:59:09 GMT + - Tue, 13 Jul 2021 16:09:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + - 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/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1658,7 +1664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1678,15 +1684,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1695,7 +1701,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:11 GMT + - Tue, 13 Jul 2021 16:09:09 GMT expires: - '-1' pragma: @@ -1731,15 +1737,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1748,7 +1754,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:12 GMT + - Tue, 13 Jul 2021 16:09:10 GMT expires: - '-1' pragma: @@ -1784,15 +1790,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1801,7 +1807,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:13 GMT + - Tue, 13 Jul 2021 16:09:11 GMT expires: - '-1' pragma: @@ -1837,15 +1843,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1854,7 +1860,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:14 GMT + - Tue, 13 Jul 2021 16:09:13 GMT expires: - '-1' pragma: @@ -1890,15 +1896,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1907,7 +1913,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:16 GMT + - Tue, 13 Jul 2021 16:09:14 GMT expires: - '-1' pragma: @@ -1943,15 +1949,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1960,7 +1966,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:17 GMT + - Tue, 13 Jul 2021 16:09:16 GMT expires: - '-1' pragma: @@ -1996,15 +2002,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2013,7 +2019,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:18 GMT + - Tue, 13 Jul 2021 16:09:17 GMT expires: - '-1' pragma: @@ -2049,15 +2055,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2066,7 +2072,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:19 GMT + - Tue, 13 Jul 2021 16:09:18 GMT expires: - '-1' pragma: @@ -2102,15 +2108,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2119,7 +2125,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:20 GMT + - Tue, 13 Jul 2021 16:09:19 GMT expires: - '-1' pragma: @@ -2155,15 +2161,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2172,7 +2178,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:22 GMT + - Tue, 13 Jul 2021 16:09:21 GMT expires: - '-1' pragma: @@ -2208,15 +2214,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2225,7 +2231,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:23 GMT + - Tue, 13 Jul 2021 16:09:22 GMT expires: - '-1' pragma: @@ -2261,15 +2267,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2278,7 +2284,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:24 GMT + - Tue, 13 Jul 2021 16:09:23 GMT expires: - '-1' pragma: @@ -2314,15 +2320,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2331,7 +2337,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:25 GMT + - Tue, 13 Jul 2021 16:09:24 GMT expires: - '-1' pragma: @@ -2367,15 +2373,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2384,7 +2390,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:27 GMT + - Tue, 13 Jul 2021 16:09:25 GMT expires: - '-1' pragma: @@ -2420,15 +2426,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2437,7 +2443,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:28 GMT + - Tue, 13 Jul 2021 16:09:27 GMT expires: - '-1' pragma: @@ -2473,15 +2479,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2490,7 +2496,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:30 GMT + - Tue, 13 Jul 2021 16:09:28 GMT expires: - '-1' pragma: @@ -2526,15 +2532,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2543,7 +2549,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:32 GMT + - Tue, 13 Jul 2021 16:09:29 GMT expires: - '-1' pragma: @@ -2579,15 +2585,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2596,7 +2602,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:34 GMT + - Tue, 13 Jul 2021 16:09:30 GMT expires: - '-1' pragma: @@ -2632,15 +2638,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2649,7 +2655,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:35 GMT + - Tue, 13 Jul 2021 16:09:31 GMT expires: - '-1' pragma: @@ -2685,15 +2691,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2702,7 +2708,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:36 GMT + - Tue, 13 Jul 2021 16:09:33 GMT expires: - '-1' pragma: @@ -2738,15 +2744,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2755,7 +2761,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:37 GMT + - Tue, 13 Jul 2021 16:09:34 GMT expires: - '-1' pragma: @@ -2791,15 +2797,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2808,7 +2814,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:38 GMT + - Tue, 13 Jul 2021 16:09:35 GMT expires: - '-1' pragma: @@ -2844,15 +2850,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2861,7 +2867,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:40 GMT + - Tue, 13 Jul 2021 16:09:36 GMT expires: - '-1' pragma: @@ -2897,15 +2903,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2914,7 +2920,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:41 GMT + - Tue, 13 Jul 2021 16:09:38 GMT expires: - '-1' pragma: @@ -2950,15 +2956,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2967,7 +2973,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:42 GMT + - Tue, 13 Jul 2021 16:09:40 GMT expires: - '-1' pragma: @@ -3003,15 +3009,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3020,7 +3026,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:43 GMT + - Tue, 13 Jul 2021 16:09:41 GMT expires: - '-1' pragma: @@ -3056,15 +3062,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3073,7 +3079,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:44 GMT + - Tue, 13 Jul 2021 16:09:42 GMT expires: - '-1' pragma: @@ -3109,15 +3115,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3126,7 +3132,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:46 GMT + - Tue, 13 Jul 2021 16:09:43 GMT expires: - '-1' pragma: @@ -3162,15 +3168,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3179,7 +3185,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:47 GMT + - Tue, 13 Jul 2021 16:09:45 GMT expires: - '-1' pragma: @@ -3215,15 +3221,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3232,7 +3238,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:48 GMT + - Tue, 13 Jul 2021 16:09:46 GMT expires: - '-1' pragma: @@ -3268,15 +3274,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3285,7 +3291,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:49 GMT + - Tue, 13 Jul 2021 16:09:47 GMT expires: - '-1' pragma: @@ -3321,15 +3327,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3338,7 +3344,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:52 GMT + - Tue, 13 Jul 2021 16:09:48 GMT expires: - '-1' pragma: @@ -3374,15 +3380,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3391,7 +3397,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:53 GMT + - Tue, 13 Jul 2021 16:09:49 GMT expires: - '-1' pragma: @@ -3427,15 +3433,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3444,7 +3450,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:54 GMT + - Tue, 13 Jul 2021 16:09:51 GMT expires: - '-1' pragma: @@ -3480,15 +3486,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3497,7 +3503,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:55 GMT + - Tue, 13 Jul 2021 16:09:52 GMT expires: - '-1' pragma: @@ -3533,15 +3539,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3550,7 +3556,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:56 GMT + - Tue, 13 Jul 2021 16:09:53 GMT expires: - '-1' pragma: @@ -3586,15 +3592,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3603,7 +3609,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:58 GMT + - Tue, 13 Jul 2021 16:09:54 GMT expires: - '-1' pragma: @@ -3639,15 +3645,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3656,7 +3662,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 11:59:59 GMT + - Tue, 13 Jul 2021 16:09:55 GMT expires: - '-1' pragma: @@ -3692,15 +3698,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3709,7 +3715,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:00 GMT + - Tue, 13 Jul 2021 16:09:57 GMT expires: - '-1' pragma: @@ -3745,15 +3751,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3762,7 +3768,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:01 GMT + - Tue, 13 Jul 2021 16:09:58 GMT expires: - '-1' pragma: @@ -3798,15 +3804,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3815,7 +3821,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:02 GMT + - Tue, 13 Jul 2021 16:09:59 GMT expires: - '-1' pragma: @@ -3851,15 +3857,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3868,7 +3874,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:04 GMT + - Tue, 13 Jul 2021 16:10:00 GMT expires: - '-1' pragma: @@ -3904,15 +3910,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3921,7 +3927,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:05 GMT + - Tue, 13 Jul 2021 16:10:01 GMT expires: - '-1' pragma: @@ -3957,15 +3963,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3974,7 +3980,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:06 GMT + - Tue, 13 Jul 2021 16:10:03 GMT expires: - '-1' pragma: @@ -4010,15 +4016,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4027,7 +4033,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:07 GMT + - Tue, 13 Jul 2021 16:10:05 GMT expires: - '-1' pragma: @@ -4063,15 +4069,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4080,7 +4086,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:09 GMT + - Tue, 13 Jul 2021 16:10:06 GMT expires: - '-1' pragma: @@ -4116,15 +4122,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4133,7 +4139,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:10 GMT + - Tue, 13 Jul 2021 16:10:07 GMT expires: - '-1' pragma: @@ -4169,15 +4175,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4186,7 +4192,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:12 GMT + - Tue, 13 Jul 2021 16:10:08 GMT expires: - '-1' pragma: @@ -4222,15 +4228,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4239,7 +4245,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:13 GMT + - Tue, 13 Jul 2021 16:10:09 GMT expires: - '-1' pragma: @@ -4275,15 +4281,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4292,7 +4298,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:15 GMT + - Tue, 13 Jul 2021 16:10:11 GMT expires: - '-1' pragma: @@ -4328,15 +4334,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4345,7 +4351,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:16 GMT + - Tue, 13 Jul 2021 16:10:12 GMT expires: - '-1' pragma: @@ -4381,15 +4387,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4398,7 +4404,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:17 GMT + - Tue, 13 Jul 2021 16:10:13 GMT expires: - '-1' pragma: @@ -4434,15 +4440,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4451,7 +4457,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:18 GMT + - Tue, 13 Jul 2021 16:10:14 GMT expires: - '-1' pragma: @@ -4487,15 +4493,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4504,7 +4510,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:19 GMT + - Tue, 13 Jul 2021 16:10:15 GMT expires: - '-1' pragma: @@ -4540,15 +4546,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4557,7 +4563,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:21 GMT + - Tue, 13 Jul 2021 16:10:17 GMT expires: - '-1' pragma: @@ -4593,15 +4599,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4610,7 +4616,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:22 GMT + - Tue, 13 Jul 2021 16:10:18 GMT expires: - '-1' pragma: @@ -4646,15 +4652,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4663,7 +4669,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:23 GMT + - Tue, 13 Jul 2021 16:10:19 GMT expires: - '-1' pragma: @@ -4699,15 +4705,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4716,7 +4722,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:24 GMT + - Tue, 13 Jul 2021 16:10:20 GMT expires: - '-1' pragma: @@ -4752,15 +4758,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4769,7 +4775,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:26 GMT + - Tue, 13 Jul 2021 16:10:21 GMT expires: - '-1' pragma: @@ -4805,15 +4811,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4822,7 +4828,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:27 GMT + - Tue, 13 Jul 2021 16:10:23 GMT expires: - '-1' pragma: @@ -4858,15 +4864,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4875,7 +4881,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:28 GMT + - Tue, 13 Jul 2021 16:10:24 GMT expires: - '-1' pragma: @@ -4911,15 +4917,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4928,7 +4934,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:29 GMT + - Tue, 13 Jul 2021 16:10:25 GMT expires: - '-1' pragma: @@ -4964,15 +4970,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4981,7 +4987,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:31 GMT + - Tue, 13 Jul 2021 16:10:26 GMT expires: - '-1' pragma: @@ -5017,15 +5023,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5034,7 +5040,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:32 GMT + - Tue, 13 Jul 2021 16:10:28 GMT expires: - '-1' pragma: @@ -5070,15 +5076,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5087,7 +5093,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:33 GMT + - Tue, 13 Jul 2021 16:10:29 GMT expires: - '-1' pragma: @@ -5123,15 +5129,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5140,7 +5146,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:34 GMT + - Tue, 13 Jul 2021 16:10:30 GMT expires: - '-1' pragma: @@ -5176,15 +5182,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5193,7 +5199,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:35 GMT + - Tue, 13 Jul 2021 16:10:31 GMT expires: - '-1' pragma: @@ -5229,15 +5235,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5246,7 +5252,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:37 GMT + - Tue, 13 Jul 2021 16:10:33 GMT expires: - '-1' pragma: @@ -5282,15 +5288,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5299,7 +5305,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:38 GMT + - Tue, 13 Jul 2021 16:10:34 GMT expires: - '-1' pragma: @@ -5335,15 +5341,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5352,7 +5358,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:39 GMT + - Tue, 13 Jul 2021 16:10:35 GMT expires: - '-1' pragma: @@ -5388,15 +5394,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5405,7 +5411,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:41 GMT + - Tue, 13 Jul 2021 16:10:36 GMT expires: - '-1' pragma: @@ -5441,24 +5447,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"Succeeded","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"2021-06-23T11:59:09.8170132Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e2ef177f-e4a8-48fe-b75b-b961094ff09c"}}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:42 GMT + - Tue, 13 Jul 2021 16:10:38 GMT expires: - '-1' pragma: @@ -5494,16 +5500,175 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2ef177f-e4a8-48fe-b75b-b961094ff09c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2ef177f-e4a8-48fe-b75b-b961094ff09c","name":"e2ef177f-e4a8-48fe-b75b-b961094ff09c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M32.0611384S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"2021-06-23T12:00:41.8781516Z","activityId":"602b309a-d41a-11eb-9796-c8f750f92764"}}' + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 16:10: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: + - '77' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 + response: + body: + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"InProgress","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 16:10: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: + - '76' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d59093f9-4a14-4537-ade6-6f0573113269?api-version=2021-01-01 + response: + body: + string: '{"id":"d59093f9-4a14-4537-ade6-6f0573113269","name":"d59093f9-4a14-4537-ade6-6f0573113269","status":"Succeeded","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"2021-07-13T16:09:09.4868374Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d01531cc-8146-4b9a-974e-92d8e268b9b9"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 16:10: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: + - '75' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d01531cc-8146-4b9a-974e-92d8e268b9b9?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d01531cc-8146-4b9a-974e-92d8e268b9b9","name":"d01531cc-8146-4b9a-974e-92d8e268b9b9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M32.5064272S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T16:09:09.4868374Z","endTime":"2021-07-13T16:10:41.9932646Z","activityId":"9c5d9636-e3f4-11eb-9f6d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -5512,7 +5677,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:43 GMT + - Tue, 13 Jul 2021 16:10:42 GMT expires: - '-1' pragma: @@ -5549,24 +5714,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + 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":"934519061","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1988' + - '1983' content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:44 GMT + - Tue, 13 Jul 2021 16:10:43 GMT expires: - '-1' pragma: @@ -5590,7 +5755,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-23T00:00:00.000Z"}}' + "2021-08-12T00:00:00.000Z"}}' headers: Accept: - application/json @@ -5607,8 +5772,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -5618,17 +5783,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/8b2ae124-9a2f-4b58-8625-d878df3f26ba?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/a650fb99-56d7-46ed-8fd9-4f2f38a6f683?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 23 Jun 2021 12:00:44 GMT + - Tue, 13 Jul 2021 16:10:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/8b2ae124-9a2f-4b58-8625-d878df3f26ba?api-version=2021-01-01 + - 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/a650fb99-56d7-46ed-8fd9-4f2f38a6f683?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -5656,24 +5821,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8b2ae124-9a2f-4b58-8625-d878df3f26ba?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a650fb99-56d7-46ed-8fd9-4f2f38a6f683?api-version=2021-01-01 response: body: - string: '{"id":"8b2ae124-9a2f-4b58-8625-d878df3f26ba","name":"8b2ae124-9a2f-4b58-8625-d878df3f26ba","status":"Succeeded","startTime":"2021-06-23T12:00:45.0060453Z","endTime":"2021-06-23T12:00:45.0060453Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c8d6af63-1ec4-485d-945a-83791e69b951"}}' + string: '{"id":"a650fb99-56d7-46ed-8fd9-4f2f38a6f683","name":"a650fb99-56d7-46ed-8fd9-4f2f38a6f683","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:44 GMT + - Tue, 13 Jul 2021 16:10:44 GMT expires: - '-1' pragma: @@ -5709,34 +5874,30 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a650fb99-56d7-46ed-8fd9-4f2f38a6f683?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT0.8840046S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + string: '{"id":"a650fb99-56d7-46ed-8fd9-4f2f38a6f683","name":"a650fb99-56d7-46ed-8fd9-4f2f38a6f683","status":"Succeeded","startTime":"2021-07-13T16:10:44.5239292Z","endTime":"2021-07-13T16:10:44.5239292Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '304' content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:46 GMT + - Tue, 13 Jul 2021 16:10: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: @@ -5746,7 +5907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -5760,24 +5921,24 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.3759536S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.3515336S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -5786,7 +5947,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:46 GMT + - Tue, 13 Jul 2021 16:10:47 GMT expires: - '-1' pragma: @@ -5803,7 +5964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5823,18 +5984,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.7224516S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.8515772S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -5843,7 +6004,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:00:46 GMT + - Tue, 13 Jul 2021 16:10:47 GMT expires: - '-1' pragma: @@ -5860,7 +6021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -5880,27 +6041,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32.2234788S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.2482016S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1156' content-type: - application/json date: - - Wed, 23 Jun 2021 12:01:16 GMT + - Tue, 13 Jul 2021 16:10:48 GMT expires: - '-1' pragma: @@ -5917,7 +6078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -5937,27 +6098,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M2.7408017S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34.0424675S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Wed, 23 Jun 2021 12:01:47 GMT + - Tue, 13 Jul 2021 16:11:19 GMT expires: - '-1' pragma: @@ -5974,7 +6135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -5994,27 +6155,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M33.1664695S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.4880608S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:02:18 GMT + - Tue, 13 Jul 2021 16:11:49 GMT expires: - '-1' pragma: @@ -6031,7 +6192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -6051,27 +6212,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M3.5568349S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.9372563S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:02:48 GMT + - Tue, 13 Jul 2021 16:12:20 GMT expires: - '-1' pragma: @@ -6088,7 +6249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -6108,27 +6269,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M33.9689608S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M6.3929115S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:03:19 GMT + - Tue, 13 Jul 2021 16:12:51 GMT expires: - '-1' pragma: @@ -6145,7 +6306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -6165,27 +6326,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.4396781S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M36.8510248S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:03:49 GMT + - Tue, 13 Jul 2021 16:13:21 GMT expires: - '-1' pragma: @@ -6202,7 +6363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '134' x-powered-by: - ASP.NET status: @@ -6222,27 +6383,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M34.7681526S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.3250378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:04:19 GMT + - Tue, 13 Jul 2021 16:13:52 GMT expires: - '-1' pragma: @@ -6259,7 +6420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '133' x-powered-by: - ASP.NET status: @@ -6279,27 +6440,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M5.1337678S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M37.7160969S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:04:50 GMT + - Tue, 13 Jul 2021 16:14:22 GMT expires: - '-1' pragma: @@ -6316,7 +6477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '132' x-powered-by: - ASP.NET status: @@ -6336,27 +6497,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M35.6110378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M8.1790184S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:05:20 GMT + - Tue, 13 Jul 2021 16:14:53 GMT expires: - '-1' pragma: @@ -6373,7 +6534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '131' x-powered-by: - ASP.NET status: @@ -6393,27 +6554,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M6.0872161S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M38.8542156S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:05:51 GMT + - Tue, 13 Jul 2021 16:15:24 GMT expires: - '-1' pragma: @@ -6430,7 +6591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '130' x-powered-by: - ASP.NET status: @@ -6450,27 +6611,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M36.6095168S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M9.3626314S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:06:21 GMT + - Tue, 13 Jul 2021 16:15:54 GMT expires: - '-1' pragma: @@ -6487,7 +6648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '129' x-powered-by: - ASP.NET status: @@ -6507,27 +6668,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M7.0121755S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M39.9196117S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:06:52 GMT + - Tue, 13 Jul 2021 16:16:25 GMT expires: - '-1' pragma: @@ -6544,7 +6705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '128' x-powered-by: - ASP.NET status: @@ -6564,27 +6725,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M37.733384S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M10.4034373S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:07:22 GMT + - Tue, 13 Jul 2021 16:16:55 GMT expires: - '-1' pragma: @@ -6601,7 +6762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '127' x-powered-by: - ASP.NET status: @@ -6621,27 +6782,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M8.1939312S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M40.8531055S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:07:53 GMT + - Tue, 13 Jul 2021 16:17:26 GMT expires: - '-1' pragma: @@ -6658,7 +6819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '126' x-powered-by: - ASP.NET status: @@ -6678,27 +6839,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M38.6278514S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M11.3145275S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:08:23 GMT + - Tue, 13 Jul 2021 16:17:56 GMT expires: - '-1' pragma: @@ -6715,7 +6876,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '125' x-powered-by: - ASP.NET status: @@ -6735,27 +6896,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M9.0582708S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M41.7883248S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:08:53 GMT + - Tue, 13 Jul 2021 16:18:27 GMT expires: - '-1' pragma: @@ -6772,7 +6933,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '124' x-powered-by: - ASP.NET status: @@ -6792,27 +6953,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M39.4863809S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M12.340223S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Wed, 23 Jun 2021 12:09:24 GMT + - Tue, 13 Jul 2021 16:18:57 GMT expires: - '-1' pragma: @@ -6829,7 +6990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '123' x-powered-by: - ASP.NET status: @@ -6849,27 +7010,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M9.9332932S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M42.7501108S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:09:54 GMT + - Tue, 13 Jul 2021 16:19:27 GMT expires: - '-1' pragma: @@ -6886,7 +7047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '122' x-powered-by: - ASP.NET status: @@ -6906,18 +7067,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M40.3005858S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M13.2831603S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6926,7 +7087,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:10:25 GMT + - Tue, 13 Jul 2021 16:19:58 GMT expires: - '-1' pragma: @@ -6943,7 +7104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '121' x-powered-by: - ASP.NET status: @@ -6963,27 +7124,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M10.7271244S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M43.9147709S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:10:55 GMT + - Tue, 13 Jul 2021 16:20:29 GMT expires: - '-1' pragma: @@ -7000,7 +7161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '120' x-powered-by: - ASP.NET status: @@ -7020,27 +7181,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M41.1116584S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M14.750718S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:11:25 GMT + - Tue, 13 Jul 2021 16:20:59 GMT expires: - '-1' pragma: @@ -7057,7 +7218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '119' x-powered-by: - ASP.NET status: @@ -7077,27 +7238,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M11.483577S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M45.3067397S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:11:56 GMT + - Tue, 13 Jul 2021 16:21:30 GMT expires: - '-1' pragma: @@ -7114,7 +7275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '118' x-powered-by: - ASP.NET status: @@ -7134,18 +7295,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M42.0576953S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M16.7195593S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7154,7 +7315,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:12:26 GMT + - Tue, 13 Jul 2021 16:22:01 GMT expires: - '-1' pragma: @@ -7171,7 +7332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '117' x-powered-by: - ASP.NET status: @@ -7191,18 +7352,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M12.4299012S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M47.1484287S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7211,7 +7372,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:12:56 GMT + - Tue, 13 Jul 2021 16:22:32 GMT expires: - '-1' pragma: @@ -7228,7 +7389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '116' x-powered-by: - ASP.NET status: @@ -7248,18 +7409,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M42.8120082S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M17.5754214S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7268,7 +7429,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:13:28 GMT + - Tue, 13 Jul 2021 16:23:03 GMT expires: - '-1' pragma: @@ -7285,7 +7446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '115' x-powered-by: - ASP.NET status: @@ -7305,18 +7466,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M13.5896017S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M48.0714184S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7325,7 +7486,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:13:58 GMT + - Tue, 13 Jul 2021 16:23:33 GMT expires: - '-1' pragma: @@ -7342,7 +7503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '114' x-powered-by: - ASP.NET status: @@ -7362,18 +7523,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M44.0008897S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M18.6413922S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7382,7 +7543,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:14:28 GMT + - Tue, 13 Jul 2021 16:24:03 GMT expires: - '-1' pragma: @@ -7399,7 +7560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '113' x-powered-by: - ASP.NET status: @@ -7419,18 +7580,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M14.5789344S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M49.1790278S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7439,7 +7600,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:14:59 GMT + - Tue, 13 Jul 2021 16:24:34 GMT expires: - '-1' pragma: @@ -7456,7 +7617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '112' x-powered-by: - ASP.NET status: @@ -7476,18 +7637,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M45.0590833S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M19.6198451S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7496,7 +7657,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:15:29 GMT + - Tue, 13 Jul 2021 16:25:04 GMT expires: - '-1' pragma: @@ -7513,7 +7674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '111' x-powered-by: - ASP.NET status: @@ -7533,18 +7694,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M15.5707771S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M50.4030782S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7553,7 +7714,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:16:00 GMT + - Tue, 13 Jul 2021 16:25:35 GMT expires: - '-1' pragma: @@ -7570,7 +7731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '110' x-powered-by: - ASP.NET status: @@ -7590,18 +7751,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M46.0536054S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M20.9345587S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7610,7 +7771,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:16:30 GMT + - Tue, 13 Jul 2021 16:26:05 GMT expires: - '-1' pragma: @@ -7627,7 +7788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '109' x-powered-by: - ASP.NET status: @@ -7647,18 +7808,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M16.4108227S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M51.4992555S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7667,7 +7828,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:17:01 GMT + - Tue, 13 Jul 2021 16:26:36 GMT expires: - '-1' pragma: @@ -7684,7 +7845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '108' x-powered-by: - ASP.NET status: @@ -7704,18 +7865,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M46.7498204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M22.2972028S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7724,7 +7885,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:17:32 GMT + - Tue, 13 Jul 2021 16:27:07 GMT expires: - '-1' pragma: @@ -7741,7 +7902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '107' x-powered-by: - ASP.NET status: @@ -7761,18 +7922,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M17.1460282S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M52.7672656S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7781,7 +7942,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:18:02 GMT + - Tue, 13 Jul 2021 16:27:38 GMT expires: - '-1' pragma: @@ -7798,7 +7959,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '106' x-powered-by: - ASP.NET status: @@ -7818,18 +7979,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M47.6164951S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M23.2335846S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7838,7 +7999,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:18:32 GMT + - Tue, 13 Jul 2021 16:28:08 GMT expires: - '-1' pragma: @@ -7855,7 +8016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '105' x-powered-by: - ASP.NET status: @@ -7875,27 +8036,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M18.2144083S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M53.764972S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:19:03 GMT + - Tue, 13 Jul 2021 16:28:39 GMT expires: - '-1' pragma: @@ -7912,7 +8073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '104' x-powered-by: - ASP.NET status: @@ -7932,18 +8093,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M48.5743731S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M24.2783204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7952,7 +8113,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:19:33 GMT + - Tue, 13 Jul 2021 16:29:09 GMT expires: - '-1' pragma: @@ -7969,7 +8130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '103' x-powered-by: - ASP.NET status: @@ -7989,18 +8150,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M18.9449905S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M54.8188827S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8009,7 +8170,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:20:03 GMT + - Tue, 13 Jul 2021 16:29:40 GMT expires: - '-1' pragma: @@ -8026,7 +8187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '102' x-powered-by: - ASP.NET status: @@ -8046,18 +8207,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M49.4853252S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M25.2946204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8066,7 +8227,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:20:34 GMT + - Tue, 13 Jul 2021 16:30:10 GMT expires: - '-1' pragma: @@ -8083,7 +8244,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '101' x-powered-by: - ASP.NET status: @@ -8103,18 +8264,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M19.9754018S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M55.7656616S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8123,7 +8284,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:21:04 GMT + - Tue, 13 Jul 2021 16:30:41 GMT expires: - '-1' pragma: @@ -8140,7 +8301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '100' x-powered-by: - ASP.NET status: @@ -8160,18 +8321,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M50.3778271S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M26.6021034S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8180,7 +8341,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:21:35 GMT + - Tue, 13 Jul 2021 16:31:11 GMT expires: - '-1' pragma: @@ -8197,7 +8358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '99' x-powered-by: - ASP.NET status: @@ -8217,18 +8378,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M20.8459907S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M57.2667035S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8237,7 +8398,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:22:05 GMT + - Tue, 13 Jul 2021 16:31:42 GMT expires: - '-1' pragma: @@ -8254,7 +8415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '98' x-powered-by: - ASP.NET status: @@ -8274,18 +8435,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M51.5671297S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M27.7902864S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8294,7 +8455,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:22:36 GMT + - Tue, 13 Jul 2021 16:32:12 GMT expires: - '-1' pragma: @@ -8311,7 +8472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '97' x-powered-by: - ASP.NET status: @@ -8331,18 +8492,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M22.3467155S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M58.2053853S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8351,7 +8512,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:23:06 GMT + - Tue, 13 Jul 2021 16:32:43 GMT expires: - '-1' pragma: @@ -8368,7 +8529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '96' x-powered-by: - ASP.NET status: @@ -8388,27 +8549,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M52.892686S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M28.6908387S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:23:37 GMT + - Tue, 13 Jul 2021 16:33:13 GMT expires: - '-1' pragma: @@ -8425,7 +8586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '95' x-powered-by: - ASP.NET status: @@ -8445,27 +8606,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M23.5876877S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M59.108347S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:24:08 GMT + - Tue, 13 Jul 2021 16:33:44 GMT expires: - '-1' pragma: @@ -8482,7 +8643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '94' x-powered-by: - ASP.NET status: @@ -8502,18 +8663,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M54.0881682S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M29.5666334S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8522,7 +8683,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:24:39 GMT + - Tue, 13 Jul 2021 16:34:15 GMT expires: - '-1' pragma: @@ -8539,7 +8700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '93' x-powered-by: - ASP.NET status: @@ -8559,18 +8720,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M24.6030387S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M21.4902547S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8579,7 +8740,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:25:09 GMT + - Tue, 13 Jul 2021 16:35:07 GMT expires: - '-1' pragma: @@ -8596,7 +8757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '92' x-powered-by: - ASP.NET status: @@ -8616,18 +8777,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M55.0638204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M52.2896675S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8636,7 +8797,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:25:40 GMT + - Tue, 13 Jul 2021 16:35:37 GMT expires: - '-1' pragma: @@ -8653,7 +8814,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '91' x-powered-by: - ASP.NET status: @@ -8673,27 +8834,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M25.521108S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M22.8377093S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:26:10 GMT + - Tue, 13 Jul 2021 16:36:07 GMT expires: - '-1' pragma: @@ -8710,7 +8871,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '90' x-powered-by: - ASP.NET status: @@ -8730,18 +8891,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M56.2197836S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M53.3086429S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8750,7 +8911,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:26:40 GMT + - Tue, 13 Jul 2021 16:36:38 GMT expires: - '-1' pragma: @@ -8767,7 +8928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '89' x-powered-by: - ASP.NET status: @@ -8787,27 +8948,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M26.6406425S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M23.781117S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:27:11 GMT + - Tue, 13 Jul 2021 16:37:08 GMT expires: - '-1' pragma: @@ -8824,7 +8985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '88' x-powered-by: - ASP.NET status: @@ -8844,18 +9005,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M57.0689606S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M54.2422362S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8864,7 +9025,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:27:41 GMT + - Tue, 13 Jul 2021 16:37:39 GMT expires: - '-1' pragma: @@ -8881,7 +9042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '87' x-powered-by: - ASP.NET status: @@ -8901,18 +9062,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M27.4778399S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M24.7325713S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8921,7 +9082,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:28:12 GMT + - Tue, 13 Jul 2021 16:38:09 GMT expires: - '-1' pragma: @@ -8938,7 +9099,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '86' x-powered-by: - ASP.NET status: @@ -8958,27 +9119,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M58.0016097S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M55.24892S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Wed, 23 Jun 2021 12:28:42 GMT + - Tue, 13 Jul 2021 16:38:40 GMT expires: - '-1' pragma: @@ -8995,7 +9156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '85' x-powered-by: - ASP.NET status: @@ -9015,27 +9176,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M28.4335899S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M25.712919S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:29:13 GMT + - Tue, 13 Jul 2021 16:39:11 GMT expires: - '-1' pragma: @@ -9052,7 +9213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '84' x-powered-by: - ASP.NET status: @@ -9072,18 +9233,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M58.8978196S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M56.2397394S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9092,7 +9253,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:29:43 GMT + - Tue, 13 Jul 2021 16:39:41 GMT expires: - '-1' pragma: @@ -9109,7 +9270,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '83' x-powered-by: - ASP.NET status: @@ -9129,27 +9290,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M29.276504S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M26.6738241S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:30:13 GMT + - Tue, 13 Jul 2021 16:40:11 GMT expires: - '-1' pragma: @@ -9166,7 +9327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '88' x-powered-by: - ASP.NET status: @@ -9186,18 +9347,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M59.9110373S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M57.1602191S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9206,7 +9367,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:30:45 GMT + - Tue, 13 Jul 2021 16:40:42 GMT expires: - '-1' pragma: @@ -9223,7 +9384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '87' x-powered-by: - ASP.NET status: @@ -9243,27 +9404,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M30.2784968S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M27.556767S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:31:15 GMT + - Tue, 13 Jul 2021 16:41:12 GMT expires: - '-1' pragma: @@ -9280,7 +9441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '86' x-powered-by: - ASP.NET status: @@ -9300,27 +9461,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M0.68091S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M58.0397002S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:31:45 GMT + - Tue, 13 Jul 2021 16:41:43 GMT expires: - '-1' pragma: @@ -9337,7 +9498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '85' x-powered-by: - ASP.NET status: @@ -9357,18 +9518,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M31.1748327S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M28.7559678S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9377,7 +9538,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:32:16 GMT + - Tue, 13 Jul 2021 16:42:13 GMT expires: - '-1' pragma: @@ -9394,7 +9555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '84' x-powered-by: - ASP.NET status: @@ -9414,27 +9575,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M1.5937717S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M59.1646521S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 23 Jun 2021 12:32:46 GMT + - Tue, 13 Jul 2021 16:42:44 GMT expires: - '-1' pragma: @@ -9451,7 +9612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '83' x-powered-by: - ASP.NET status: @@ -9471,18 +9632,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M32.1086285S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M29.7158041S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9491,7 +9652,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:33:16 GMT + - Tue, 13 Jul 2021 16:43:15 GMT expires: - '-1' pragma: @@ -9508,7 +9669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '82' x-powered-by: - ASP.NET status: @@ -9528,18 +9689,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M2.6596685S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M0.2313088S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9548,7 +9709,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:33:47 GMT + - Tue, 13 Jul 2021 16:43:45 GMT expires: - '-1' pragma: @@ -9565,7 +9726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '81' x-powered-by: - ASP.NET status: @@ -9585,18 +9746,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M33.1073593S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M30.7490112S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9605,7 +9766,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:34:18 GMT + - Tue, 13 Jul 2021 16:44:16 GMT expires: - '-1' pragma: @@ -9622,7 +9783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '80' x-powered-by: - ASP.NET status: @@ -9642,27 +9803,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M3.529034S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M1.1866077S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:34:48 GMT + - Tue, 13 Jul 2021 16:44:46 GMT expires: - '-1' pragma: @@ -9679,7 +9840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '79' x-powered-by: - ASP.NET status: @@ -9699,27 +9860,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M33.9714415S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M31.693456S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:35:19 GMT + - Tue, 13 Jul 2021 16:45:17 GMT expires: - '-1' pragma: @@ -9736,7 +9897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '81' x-powered-by: - ASP.NET status: @@ -9756,18 +9917,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M4.5646169S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M2.1343479S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9776,7 +9937,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:35:49 GMT + - Tue, 13 Jul 2021 16:45:47 GMT expires: - '-1' pragma: @@ -9793,7 +9954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '80' x-powered-by: - ASP.NET status: @@ -9813,18 +9974,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M34.9854071S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M32.6526154S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9833,7 +9994,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:36:19 GMT + - Tue, 13 Jul 2021 16:46:18 GMT expires: - '-1' pragma: @@ -9850,7 +10011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '79' x-powered-by: - ASP.NET status: @@ -9870,18 +10031,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M5.4781395S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M3.1877467S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9890,7 +10051,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:36:50 GMT + - Tue, 13 Jul 2021 16:46:48 GMT expires: - '-1' pragma: @@ -9907,7 +10068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '78' x-powered-by: - ASP.NET status: @@ -9927,18 +10088,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M35.8556615S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M33.6373332S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9947,7 +10108,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:37:20 GMT + - Tue, 13 Jul 2021 16:47:19 GMT expires: - '-1' pragma: @@ -9964,7 +10125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '77' x-powered-by: - ASP.NET status: @@ -9984,18 +10145,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M6.2541648S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M4.1577967S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10004,7 +10165,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:37:50 GMT + - Tue, 13 Jul 2021 16:47:49 GMT expires: - '-1' pragma: @@ -10021,7 +10182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '76' x-powered-by: - ASP.NET status: @@ -10041,18 +10202,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M36.6998145S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M34.5794913S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10061,7 +10222,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:38:21 GMT + - Tue, 13 Jul 2021 16:48:19 GMT expires: - '-1' pragma: @@ -10078,7 +10239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '75' x-powered-by: - ASP.NET status: @@ -10098,18 +10259,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M7.1506524S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M5.4876093S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10118,7 +10279,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:38:51 GMT + - Tue, 13 Jul 2021 16:48:50 GMT expires: - '-1' pragma: @@ -10135,7 +10296,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '74' x-powered-by: - ASP.NET status: @@ -10155,27 +10316,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M37.5573647S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M35.931918S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Wed, 23 Jun 2021 12:39:23 GMT + - Tue, 13 Jul 2021 16:49:21 GMT expires: - '-1' pragma: @@ -10192,7 +10353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '73' x-powered-by: - ASP.NET status: @@ -10212,18 +10373,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M8.5228809S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M6.4878787S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10232,7 +10393,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:39:53 GMT + - Tue, 13 Jul 2021 16:49:52 GMT expires: - '-1' pragma: @@ -10249,7 +10410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '72' x-powered-by: - ASP.NET status: @@ -10269,18 +10430,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M39.0121192S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M36.9626442S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10289,7 +10450,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:40:23 GMT + - Tue, 13 Jul 2021 16:50:22 GMT expires: - '-1' pragma: @@ -10306,7 +10467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '71' x-powered-by: - ASP.NET status: @@ -10326,18 +10487,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M9.5102632S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M7.4928729S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10346,7 +10507,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:40:54 GMT + - Tue, 13 Jul 2021 16:50:52 GMT expires: - '-1' pragma: @@ -10363,7 +10524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '70' x-powered-by: - ASP.NET status: @@ -10383,18 +10544,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M40.0162667S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M38.0402812S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10403,7 +10564,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:41:25 GMT + - Tue, 13 Jul 2021 16:51:23 GMT expires: - '-1' pragma: @@ -10420,7 +10581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '69' x-powered-by: - ASP.NET status: @@ -10440,18 +10601,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M10.486953S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M8.4470789S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T16:10:44.5239292Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10460,7 +10621,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:41:55 GMT + - Tue, 13 Jul 2021 16:51:53 GMT expires: - '-1' pragma: @@ -10477,7 +10638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '68' x-powered-by: - ASP.NET status: @@ -10497,18 +10658,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M11.1968202S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2abc2156-7691-4c89-8a2f-bcc7c34a08b1","name":"2abc2156-7691-4c89-8a2f-bcc7c34a08b1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M14.0845739S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/23/2021 12:00:00 AM","Backup Size":"11438 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-23T12:00:45.0060453Z","endTime":"2021-06-23T12:41:56.2028655Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T16:10:44.5239292Z","endTime":"2021-07-13T16:51:58.6085031Z","activityId":"de2aec86-e3f4-11eb-adac-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10517,7 +10678,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:42:25 GMT + - Tue, 13 Jul 2021 16:52:24 GMT expires: - '-1' pragma: @@ -10534,7 +10695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '67' x-powered-by: - ASP.NET status: @@ -10554,8 +10715,8 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10571,7 +10732,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:21 GMT + - Tue, 13 Jul 2021 16:53:18 GMT expires: - '-1' pragma: @@ -10607,8 +10768,8 @@ interactions: ParameterSetName: - -g -v -c --backup-management-type --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10616,16 +10777,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T16:10:44.5239292Z","protectedItemDataId":"934519061","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-07-13T16:10:49.1608073Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2358' content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:20 GMT + - Tue, 13 Jul 2021 16:53:20 GMT expires: - '-1' pragma: @@ -10661,8 +10822,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10670,16 +10831,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T16:10:44.5239292Z","protectedItemDataId":"934519061","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-07-13T16:10:49.1608073Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2358' content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:21 GMT + - Tue, 13 Jul 2021 16:53:20 GMT expires: - '-1' pragma: @@ -10695,7 +10856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -10715,15 +10876,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/31060579713735","name":"31060579713735","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-23T12:00:48.2225748Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/41472731526391","name":"41472731526391","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T16:10:49.1608073Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}]}' @@ -10735,7 +10896,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:22 GMT + - Tue, 13 Jul 2021 16:53:20 GMT expires: - '-1' pragma: @@ -10771,8 +10932,8 @@ interactions: ParameterSetName: - -g -v -i -c --backup-management-type --is-ready-for-move --target-tier --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10780,16 +10941,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T16:10:44.5239292Z","protectedItemDataId":"934519061","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-07-13T16:10:49.1608073Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2358' content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:22 GMT + - Tue, 13 Jul 2021 16:53:21 GMT expires: - '-1' pragma: @@ -10825,15 +10986,15 @@ interactions: ParameterSetName: - -g -v -i -c --backup-management-type --is-ready-for-move --target-tier --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/31060579713735","name":"31060579713735","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-23T12:00:48.2225748Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/41472731526391","name":"41472731526391","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T16:10:49.1608073Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}]}' @@ -10845,7 +11006,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:23 GMT + - Tue, 13 Jul 2021 16:53:21 GMT expires: - '-1' pragma: @@ -10861,7 +11022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -10881,8 +11042,8 @@ interactions: ParameterSetName: - -g -v -i -c --backup-management-type --tier --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10890,16 +11051,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T16:10:44.5239292Z","protectedItemDataId":"934519061","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-07-13T16:10:49.1608073Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2358' content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:23 GMT + - Tue, 13 Jul 2021 16:53:22 GMT expires: - '-1' pragma: @@ -10935,15 +11096,15 @@ interactions: ParameterSetName: - -g -v -i -c --backup-management-type --tier --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/31060579713735","name":"31060579713735","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-23T12:00:48.2225748Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/41472731526391","name":"41472731526391","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T16:10:49.1608073Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}]}' @@ -10955,7 +11116,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:24 GMT + - Tue, 13 Jul 2021 16:53:23 GMT expires: - '-1' pragma: @@ -10971,7 +11132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -10991,8 +11152,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11008,7 +11169,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:43:24 GMT + - Tue, 13 Jul 2021 16:53:24 GMT expires: - '-1' pragma: @@ -11044,8 +11205,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11053,16 +11214,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T16:10:44.5239292Z","protectedItemDataId":"934519061","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-07-13T16:10:49.1608073Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2358' content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:02 GMT + - Tue, 13 Jul 2021 16:53:24 GMT expires: - '-1' pragma: @@ -11099,8 +11260,8 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11108,16 +11269,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T16:10:44.5239292Z","protectedItemDataId":"934519061","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-07-13T16:10:49.1608073Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2358' content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:02 GMT + - Tue, 13 Jul 2021 16:53:24 GMT expires: - '-1' pragma: @@ -11156,8 +11317,8 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -11167,17 +11328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 23 Jun 2021 12:44:04 GMT + - Tue, 13 Jul 2021 16: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/backupOperationResults/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -11206,15 +11367,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11223,7 +11384,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:04 GMT + - Tue, 13 Jul 2021 16:53:26 GMT expires: - '-1' pragma: @@ -11260,15 +11421,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11277,7 +11438,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:05 GMT + - Tue, 13 Jul 2021 16:53:28 GMT expires: - '-1' pragma: @@ -11314,15 +11475,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11331,7 +11492,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:06 GMT + - Tue, 13 Jul 2021 16:53:29 GMT expires: - '-1' pragma: @@ -11368,15 +11529,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11385,7 +11546,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:08 GMT + - Tue, 13 Jul 2021 16:53:30 GMT expires: - '-1' pragma: @@ -11422,15 +11583,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11439,7 +11600,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:09 GMT + - Tue, 13 Jul 2021 16:53:31 GMT expires: - '-1' pragma: @@ -11476,15 +11637,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11493,7 +11654,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:10 GMT + - Tue, 13 Jul 2021 16:53:32 GMT expires: - '-1' pragma: @@ -11530,15 +11691,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11547,7 +11708,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:11 GMT + - Tue, 13 Jul 2021 16:53:34 GMT expires: - '-1' pragma: @@ -11584,15 +11745,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11601,7 +11762,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:13 GMT + - Tue, 13 Jul 2021 16:53:35 GMT expires: - '-1' pragma: @@ -11638,15 +11799,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11655,7 +11816,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:14 GMT + - Tue, 13 Jul 2021 16:53:36 GMT expires: - '-1' pragma: @@ -11692,15 +11853,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11709,7 +11870,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:15 GMT + - Tue, 13 Jul 2021 16:53:37 GMT expires: - '-1' pragma: @@ -11746,15 +11907,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11763,7 +11924,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:16 GMT + - Tue, 13 Jul 2021 16:53:39 GMT expires: - '-1' pragma: @@ -11800,15 +11961,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11817,7 +11978,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:17 GMT + - Tue, 13 Jul 2021 16:53:40 GMT expires: - '-1' pragma: @@ -11854,15 +12015,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11871,7 +12032,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:19 GMT + - Tue, 13 Jul 2021 16:53:41 GMT expires: - '-1' pragma: @@ -11908,15 +12069,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11925,7 +12086,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:20 GMT + - Tue, 13 Jul 2021 16:53:42 GMT expires: - '-1' pragma: @@ -11962,15 +12123,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11979,7 +12140,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:21 GMT + - Tue, 13 Jul 2021 16:53:44 GMT expires: - '-1' pragma: @@ -12016,15 +12177,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12033,7 +12194,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:22 GMT + - Tue, 13 Jul 2021 16:53:45 GMT expires: - '-1' pragma: @@ -12070,15 +12231,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12087,7 +12248,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:23 GMT + - Tue, 13 Jul 2021 16:53:46 GMT expires: - '-1' pragma: @@ -12124,15 +12285,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12141,7 +12302,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:25 GMT + - Tue, 13 Jul 2021 16:53:47 GMT expires: - '-1' pragma: @@ -12178,15 +12339,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12195,7 +12356,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:26 GMT + - Tue, 13 Jul 2021 16:53:48 GMT expires: - '-1' pragma: @@ -12232,15 +12393,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12249,7 +12410,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:27 GMT + - Tue, 13 Jul 2021 16:53:50 GMT expires: - '-1' pragma: @@ -12286,15 +12447,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12303,7 +12464,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:28 GMT + - Tue, 13 Jul 2021 16:53:51 GMT expires: - '-1' pragma: @@ -12340,15 +12501,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12357,7 +12518,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:29 GMT + - Tue, 13 Jul 2021 16:53:52 GMT expires: - '-1' pragma: @@ -12394,15 +12555,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12411,7 +12572,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:31 GMT + - Tue, 13 Jul 2021 16:53:53 GMT expires: - '-1' pragma: @@ -12448,15 +12609,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12465,7 +12626,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:32 GMT + - Tue, 13 Jul 2021 16:53:55 GMT expires: - '-1' pragma: @@ -12502,15 +12663,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12519,7 +12680,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:33 GMT + - Tue, 13 Jul 2021 16:53:56 GMT expires: - '-1' pragma: @@ -12556,15 +12717,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12573,7 +12734,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:34 GMT + - Tue, 13 Jul 2021 16:53:57 GMT expires: - '-1' pragma: @@ -12610,15 +12771,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12627,7 +12788,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:35 GMT + - Tue, 13 Jul 2021 16:53:58 GMT expires: - '-1' pragma: @@ -12664,15 +12825,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12681,7 +12842,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:37 GMT + - Tue, 13 Jul 2021 16:54:00 GMT expires: - '-1' pragma: @@ -12718,15 +12879,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12735,7 +12896,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:38 GMT + - Tue, 13 Jul 2021 16:54:01 GMT expires: - '-1' pragma: @@ -12772,15 +12933,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12789,7 +12950,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:39 GMT + - Tue, 13 Jul 2021 16:54:02 GMT expires: - '-1' pragma: @@ -12826,15 +12987,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12843,7 +13004,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:40 GMT + - Tue, 13 Jul 2021 16:54:03 GMT expires: - '-1' pragma: @@ -12880,15 +13041,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12897,7 +13058,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:41 GMT + - Tue, 13 Jul 2021 16:54:05 GMT expires: - '-1' pragma: @@ -12934,15 +13095,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12951,7 +13112,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:43 GMT + - Tue, 13 Jul 2021 16:54:06 GMT expires: - '-1' pragma: @@ -12988,15 +13149,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13005,7 +13166,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:44 GMT + - Tue, 13 Jul 2021 16:54:07 GMT expires: - '-1' pragma: @@ -13042,15 +13203,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13059,7 +13220,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:45 GMT + - Tue, 13 Jul 2021 16:54:08 GMT expires: - '-1' pragma: @@ -13096,15 +13257,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13113,7 +13274,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:46 GMT + - Tue, 13 Jul 2021 16:54:09 GMT expires: - '-1' pragma: @@ -13150,15 +13311,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13167,7 +13328,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:48 GMT + - Tue, 13 Jul 2021 16:54:11 GMT expires: - '-1' pragma: @@ -13204,15 +13365,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13221,7 +13382,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:50 GMT + - Tue, 13 Jul 2021 16:54:12 GMT expires: - '-1' pragma: @@ -13258,15 +13419,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13275,7 +13436,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:51 GMT + - Tue, 13 Jul 2021 16:54:13 GMT expires: - '-1' pragma: @@ -13312,15 +13473,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13329,7 +13490,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:52 GMT + - Tue, 13 Jul 2021 16:54:14 GMT expires: - '-1' pragma: @@ -13366,15 +13527,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13383,7 +13544,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:53 GMT + - Tue, 13 Jul 2021 16:54:16 GMT expires: - '-1' pragma: @@ -13420,15 +13581,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13437,7 +13598,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:55 GMT + - Tue, 13 Jul 2021 16:54:17 GMT expires: - '-1' pragma: @@ -13474,15 +13635,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13491,7 +13652,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:56 GMT + - Tue, 13 Jul 2021 16:54:18 GMT expires: - '-1' pragma: @@ -13528,15 +13689,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13545,7 +13706,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:57 GMT + - Tue, 13 Jul 2021 16:54:19 GMT expires: - '-1' pragma: @@ -13582,15 +13743,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13599,7 +13760,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:58 GMT + - Tue, 13 Jul 2021 16:54:20 GMT expires: - '-1' pragma: @@ -13636,15 +13797,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13653,7 +13814,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:44:59 GMT + - Tue, 13 Jul 2021 16:54:22 GMT expires: - '-1' pragma: @@ -13690,15 +13851,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13707,7 +13868,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:01 GMT + - Tue, 13 Jul 2021 16:54:23 GMT expires: - '-1' pragma: @@ -13744,15 +13905,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13761,7 +13922,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:02 GMT + - Tue, 13 Jul 2021 16:54:24 GMT expires: - '-1' pragma: @@ -13798,15 +13959,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13815,7 +13976,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:03 GMT + - Tue, 13 Jul 2021 16:54:25 GMT expires: - '-1' pragma: @@ -13852,15 +14013,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13869,7 +14030,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:04 GMT + - Tue, 13 Jul 2021 16:54:27 GMT expires: - '-1' pragma: @@ -13906,15 +14067,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13923,7 +14084,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:06 GMT + - Tue, 13 Jul 2021 16:54:28 GMT expires: - '-1' pragma: @@ -13960,15 +14121,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13977,7 +14138,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:07 GMT + - Tue, 13 Jul 2021 16:54:29 GMT expires: - '-1' pragma: @@ -14014,15 +14175,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14031,7 +14192,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:08 GMT + - Tue, 13 Jul 2021 16:54:30 GMT expires: - '-1' pragma: @@ -14068,15 +14229,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14085,7 +14246,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:09 GMT + - Tue, 13 Jul 2021 16:54:31 GMT expires: - '-1' pragma: @@ -14122,15 +14283,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14139,7 +14300,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:10 GMT + - Tue, 13 Jul 2021 16:54:33 GMT expires: - '-1' pragma: @@ -14176,15 +14337,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14193,7 +14354,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:12 GMT + - Tue, 13 Jul 2021 16:54:34 GMT expires: - '-1' pragma: @@ -14230,15 +14391,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14247,7 +14408,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:13 GMT + - Tue, 13 Jul 2021 16:54:35 GMT expires: - '-1' pragma: @@ -14284,15 +14445,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14301,7 +14462,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:14 GMT + - Tue, 13 Jul 2021 16:54:36 GMT expires: - '-1' pragma: @@ -14338,15 +14499,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14355,7 +14516,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:15 GMT + - Tue, 13 Jul 2021 16:54:38 GMT expires: - '-1' pragma: @@ -14392,15 +14553,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14409,7 +14570,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:17 GMT + - Tue, 13 Jul 2021 16:54:39 GMT expires: - '-1' pragma: @@ -14446,15 +14607,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14463,7 +14624,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:18 GMT + - Tue, 13 Jul 2021 16:54:40 GMT expires: - '-1' pragma: @@ -14500,15 +14661,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14517,7 +14678,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:19 GMT + - Tue, 13 Jul 2021 16:54:41 GMT expires: - '-1' pragma: @@ -14554,15 +14715,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14571,7 +14732,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:20 GMT + - Tue, 13 Jul 2021 16:54:42 GMT expires: - '-1' pragma: @@ -14608,15 +14769,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14625,7 +14786,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:21 GMT + - Tue, 13 Jul 2021 16:54:45 GMT expires: - '-1' pragma: @@ -14662,15 +14823,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14679,7 +14840,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:23 GMT + - Tue, 13 Jul 2021 16:54:46 GMT expires: - '-1' pragma: @@ -14716,15 +14877,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14733,7 +14894,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:24 GMT + - Tue, 13 Jul 2021 16:54:47 GMT expires: - '-1' pragma: @@ -14770,15 +14931,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14787,7 +14948,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:25 GMT + - Tue, 13 Jul 2021 16:54:48 GMT expires: - '-1' pragma: @@ -14824,15 +14985,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14841,7 +15002,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:26 GMT + - Tue, 13 Jul 2021 16:54:49 GMT expires: - '-1' pragma: @@ -14878,15 +15039,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14895,7 +15056,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:27 GMT + - Tue, 13 Jul 2021 16:54:51 GMT expires: - '-1' pragma: @@ -14932,15 +15093,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14949,7 +15110,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:29 GMT + - Tue, 13 Jul 2021 16:54:52 GMT expires: - '-1' pragma: @@ -14986,15 +15147,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15003,7 +15164,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:30 GMT + - Tue, 13 Jul 2021 16:54:53 GMT expires: - '-1' pragma: @@ -15040,15 +15201,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15057,7 +15218,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:31 GMT + - Tue, 13 Jul 2021 16:54:54 GMT expires: - '-1' pragma: @@ -15094,15 +15255,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15111,7 +15272,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:32 GMT + - Tue, 13 Jul 2021 16:54:56 GMT expires: - '-1' pragma: @@ -15148,15 +15309,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15165,7 +15326,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:33 GMT + - Tue, 13 Jul 2021 16:54:57 GMT expires: - '-1' pragma: @@ -15202,15 +15363,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15219,7 +15380,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:35 GMT + - Tue, 13 Jul 2021 16:54:58 GMT expires: - '-1' pragma: @@ -15256,15 +15417,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15273,7 +15434,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:36 GMT + - Tue, 13 Jul 2021 16:54:59 GMT expires: - '-1' pragma: @@ -15310,15 +15471,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15327,7 +15488,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:37 GMT + - Tue, 13 Jul 2021 16:55:01 GMT expires: - '-1' pragma: @@ -15364,15 +15525,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15381,7 +15542,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:38 GMT + - Tue, 13 Jul 2021 16:55:02 GMT expires: - '-1' pragma: @@ -15418,15 +15579,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15435,7 +15596,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:40 GMT + - Tue, 13 Jul 2021 16:55:03 GMT expires: - '-1' pragma: @@ -15472,15 +15633,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15489,7 +15650,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:41 GMT + - Tue, 13 Jul 2021 16:55:04 GMT expires: - '-1' pragma: @@ -15526,15 +15687,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15543,7 +15704,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:42 GMT + - Tue, 13 Jul 2021 16:55:05 GMT expires: - '-1' pragma: @@ -15580,15 +15741,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15597,7 +15758,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:43 GMT + - Tue, 13 Jul 2021 16:55:07 GMT expires: - '-1' pragma: @@ -15634,15 +15795,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15651,7 +15812,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:44 GMT + - Tue, 13 Jul 2021 16:55:08 GMT expires: - '-1' pragma: @@ -15688,15 +15849,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15705,7 +15866,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:46 GMT + - Tue, 13 Jul 2021 16:55:09 GMT expires: - '-1' pragma: @@ -15742,15 +15903,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15759,7 +15920,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:47 GMT + - Tue, 13 Jul 2021 16:55:10 GMT expires: - '-1' pragma: @@ -15796,15 +15957,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15813,7 +15974,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:48 GMT + - Tue, 13 Jul 2021 16:55:12 GMT expires: - '-1' pragma: @@ -15850,15 +16011,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15867,7 +16028,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:49 GMT + - Tue, 13 Jul 2021 16:55:13 GMT expires: - '-1' pragma: @@ -15904,15 +16065,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15921,7 +16082,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:50 GMT + - Tue, 13 Jul 2021 16:55:14 GMT expires: - '-1' pragma: @@ -15958,15 +16119,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15975,7 +16136,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:52 GMT + - Tue, 13 Jul 2021 16:55:15 GMT expires: - '-1' pragma: @@ -16012,15 +16173,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16029,7 +16190,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:53 GMT + - Tue, 13 Jul 2021 16:55:16 GMT expires: - '-1' pragma: @@ -16066,15 +16227,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"InProgress","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16083,7 +16244,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:54 GMT + - Tue, 13 Jul 2021 16:55:18 GMT expires: - '-1' pragma: @@ -16120,15 +16281,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ef91c0f-9947-4bef-8411-1448057959dc?api-version=2021-01-01 response: body: - string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"Succeeded","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"2021-06-23T12:44:04.2182724Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280"}}' + string: '{"id":"3ef91c0f-9947-4bef-8411-1448057959dc","name":"3ef91c0f-9947-4bef-8411-1448057959dc","status":"Succeeded","startTime":"2021-07-13T16:53:25.9931823Z","endTime":"2021-07-13T16:53:25.9931823Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fd39f80a-4ad8-442c-9f2e-505dd11d9c95"}}' headers: cache-control: - no-cache @@ -16137,7 +16298,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:55 GMT + - Tue, 13 Jul 2021 16:55:19 GMT expires: - '-1' pragma: @@ -16174,16 +16335,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fd39f80a-4ad8-442c-9f2e-505dd11d9c95?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280","name":"fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.1098539S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"2021-06-23T12:45:56.3281263Z","activityId":"b08029ba-d420-11eb-ad53-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fd39f80a-4ad8-442c-9f2e-505dd11d9c95","name":"fd39f80a-4ad8-442c-9f2e-505dd11d9c95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.4242508S","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-07-13T16:53:25.9931823Z","endTime":"2021-07-13T16:55:18.4174331Z","activityId":"d54a9818-e3fa-11eb-8e96-00155ddc6812"}}' headers: cache-control: - no-cache @@ -16192,7 +16353,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 12:45:56 GMT + - Tue, 13 Jul 2021 16:55:19 GMT expires: - '-1' pragma: @@ -16209,7 +16370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -16219,7 +16380,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -16231,9 +16392,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -16243,7 +16404,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Jun 2021 12:46:02 GMT + - Tue, 13 Jul 2021 16:55:23 GMT expires: - '-1' pragma: 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 1c920530b3e..1ecbc420775 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A37%3A42.9800104Z''\"","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-07-13T08%3A01%3A08.6155626Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:37:42 GMT + - Tue, 13 Jul 2021 08:01:09 GMT expires: - '-1' pragma: @@ -43,7 +43,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '208' status: code: 201 message: Created @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:37:43 GMT + - Tue, 13 Jul 2021 08:01:09 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:37:44 GMT + - Tue, 13 Jul 2021 08:01:09 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T11:37:24Z"},"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-07-13T08:01:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:37:45 GMT + - Tue, 13 Jul 2021 08:01:10 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 11:37:46 GMT + - Tue, 13 Jul 2021 08:01:11 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 11:42:46 GMT + - Tue, 13 Jul 2021 08:06:11 GMT source-age: - - '12' + - '210' strict-transport-security: - max-age=31536000 vary: @@ -285,15 +286,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 473c7cc3788b4fd568ff87011fe998be572d4b0c + - 27eb87864a7fbeb96b74a85a57d27bc4d8a6288a x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1252-QPG + - cache-qpg1244-QPG x-timer: - - S1624275466.015557,VS0,VE1 + - S1626163272.674692,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:37:45 GMT + - Tue, 13 Jul 2021 08:01:11 GMT expires: - '-1' pragma: @@ -395,15 +396,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_U21mOm8T5AWXx5h1nAjWQ6Zx9w8BYtKp","name":"vm_deploy_U21mOm8T5AWXx5h1nAjWQ6Zx9w8BYtKp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17076369113304597773","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T11:37:48.1929405Z","duration":"PT1.1321716S","correlationId":"58cab940-c7aa-4d3a-a88a-372e228b82ca","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_PHweq462VrDrZGGvBw5rVXgJpy0rV46y","name":"vm_deploy_PHweq462VrDrZGGvBw5rVXgJpy0rV46y","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11570366391419968295","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T08:01:13.5932986Z","duration":"PT0.9748686S","correlationId":"4b6c0e5c-5bbf-4ed6-8852-e903a8455b6a","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_U21mOm8T5AWXx5h1nAjWQ6Zx9w8BYtKp/operationStatuses/08585773314184168679?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PHweq462VrDrZGGvBw5rVXgJpy0rV46y/operationStatuses/08585754436128592023?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -411,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:37:47 GMT + - Tue, 13 Jul 2021 08:01:13 GMT expires: - '-1' pragma: @@ -421,7 +422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -439,9 +440,51 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754436128592023?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: + - Tue, 13 Jul 2021 08:01: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 + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773314184168679?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/08585754436128592023?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:18 GMT + - Tue, 13 Jul 2021 08:02:14 GMT expires: - '-1' pragma: @@ -481,9 +524,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773314184168679?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/08585754436128592023?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:48 GMT + - Tue, 13 Jul 2021 08:02:44 GMT expires: - '-1' pragma: @@ -523,21 +566,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_U21mOm8T5AWXx5h1nAjWQ6Zx9w8BYtKp","name":"vm_deploy_U21mOm8T5AWXx5h1nAjWQ6Zx9w8BYtKp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17076369113304597773","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T11:38:38.5663429Z","duration":"PT51.505574S","correlationId":"58cab940-c7aa-4d3a-a88a-372e228b82ca","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_PHweq462VrDrZGGvBw5rVXgJpy0rV46y","name":"vm_deploy_PHweq462VrDrZGGvBw5rVXgJpy0rV46y","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11570366391419968295","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T08:02:37.3044815Z","duration":"PT1M24.6860515S","correlationId":"4b6c0e5c-5bbf-4ed6-8852-e903a8455b6a","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' + - '4088' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:48 GMT + - Tue, 13 Jul 2021 08:02:44 GMT expires: - '-1' pragma: @@ -565,7 +608,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -574,16 +617,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\": \"b1caa2fc-11e2-4516-a512-e74c001f409b\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c54c9c3b-9ff1-4e44-b0f7-cfbed59d46a6\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_0ed1c3426f8e4037beef622802b79d86\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_bd9b5a622b2c40349937101e2e5b7307\",\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_0ed1c3426f8e4037beef622802b79d86\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_bd9b5a622b2c40349937101e2e5b7307\"\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\": @@ -597,16 +640,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\": \"2021-06-21T11:38:49+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T08:02:45+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_0ed1c3426f8e4037beef622802b79d86\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_bd9b5a622b2c40349937101e2e5b7307\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T11:38:12.4863622+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:01:34.2290505+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T11:38:37.5957827+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:02:34.6977825+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}" @@ -614,11 +657,11 @@ interactions: cache-control: - no-cache content-length: - - '3464' + - '3473' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:48 GMT + - Tue, 13 Jul 2021 08:02:44 GMT expires: - '-1' pragma: @@ -635,7 +678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31991 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31991 status: code: 200 message: OK @@ -653,20 +696,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"10190fa3-6759-43d9-a810-8f25a3442788\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"68e06244-428d-4a6c-a4b6-90eb8866f4cc\\\"\",\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\": \"c84d2668-d002-4ff1-9971-f559d764b44a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8e3d5399-891d-49f8-b306-a9d8ee1d904d\",\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/\\\"10190fa3-6759-43d9-a810-8f25a3442788\\\"\",\r\n + \ \"etag\": \"W/\\\"68e06244-428d-4a6c-a4b6-90eb8866f4cc\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +718,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\": - \"3gb2uuvb4v1etaur1udfeki2qa.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-A2-BE-8A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"ynvecxdrt0dendd2bneily0txh.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-A0-86-5A\",\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\": @@ -690,9 +733,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:49 GMT + - Tue, 13 Jul 2021 08:02:45 GMT etag: - - W/"10190fa3-6759-43d9-a810-8f25a3442788" + - W/"68e06244-428d-4a6c-a4b6-90eb8866f4cc" expires: - '-1' pragma: @@ -709,7 +752,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d27903ce-bbb4-4ebc-959e-945862923d80 + - a4a74111-333a-43cd-877f-e4e2b48a743a status: code: 200 message: OK @@ -727,18 +770,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"241657d5-4bb8-4638-b628-170815937b77\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3609703f-bcb4-41a0-be1e-e64898e398dd\\\"\",\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\": \"ceb4b5c5-0a6c-438b-923b-694f39b08177\",\r\n - \ \"ipAddress\": \"13.67.107.20\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"83a3aeb2-b71a-40a4-b676-1eb6ec89f97c\",\r\n + \ \"ipAddress\": \"20.184.4.165\",\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 @@ -751,9 +794,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:49 GMT + - Tue, 13 Jul 2021 08:02:45 GMT etag: - - W/"241657d5-4bb8-4638-b628-170815937b77" + - W/"3609703f-bcb4-41a0-be1e-e64898e398dd" expires: - '-1' pragma: @@ -770,7 +813,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4cf15b6f-f6ac-42ca-acf2-b1fd8fcbd7d1 + - 214bd974-e12f-4b98-94a3-1b335aa91f75 status: code: 200 message: OK @@ -788,12 +831,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T11:37:24Z"},"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-07-13T08:01:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -802,7 +845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:50 GMT + - Tue, 13 Jul 2021 08:02:45 GMT expires: - '-1' pragma: @@ -837,34 +880,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -875,19 +919,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:50 GMT + - Tue, 13 Jul 2021 08:02:46 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 11:43:50 GMT + - Tue, 13 Jul 2021 08:07:46 GMT source-age: - - '77' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -901,15 +945,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - ea2c744ff67eb5f26bb4de7a965013cf7c410087 + - 44e5f9f582f6fbf53798cc4f19b41c67477205d9 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1278-QPG + - cache-qpg1282-QPG x-timer: - - S1624275531.786692,VS0,VE0 + - S1626163367.630701,VS0,VE215 x-xss-protection: - 1; mode=block status: @@ -929,27 +973,29 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"c142a05a-9f43-4ff5-a262-d1cf34ccbe36\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a6b448b7-e59c-401e-a44c-0c57c8e9c3ca\\\"\",\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\": - \"52ca83e9-f5a1-4976-8291-dd0652291c80\",\r\n \"addressSpace\": {\r\n + \"5c416ac3-9e71-4686-8c7c-0b4885e353bf\",\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/\\\"c142a05a-9f43-4ff5-a262-d1cf34ccbe36\\\"\",\r\n + \ \"etag\": \"W/\\\"a6b448b7-e59c-401e-a44c-0c57c8e9c3ca\\\"\",\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 + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg4\"\r\n + \ },\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 \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -958,11 +1004,11 @@ interactions: cache-control: - no-cache content-length: - - '1957' + - '2196' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:50 GMT + - Tue, 13 Jul 2021 08:02:47 GMT expires: - '-1' pragma: @@ -979,7 +1025,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 32549016-2264-4d91-becf-e32294799c1d + - 7ac52bd4-b9e9-47d0-9990-f2214e2fe4d9 status: code: 200 message: OK @@ -1031,15 +1077,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_6C2xpnwD1ce4Uthmq7Ma5Fl3CPZ52wQa","name":"vm_deploy_6C2xpnwD1ce4Uthmq7Ma5Fl3CPZ52wQa","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14751410870625395532","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T11:38:53.2759559Z","duration":"PT1.4007487S","correlationId":"5577a960-495a-412d-9b85-eb98e3e36217","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_nfmKdzool9bvdJ1kgVsCFZ2ljYUGP4GG","name":"vm_deploy_nfmKdzool9bvdJ1kgVsCFZ2ljYUGP4GG","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11083537201268025623","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T08:02:48.7840921Z","duration":"PT0.7580952S","correlationId":"859d6829-a526-4df5-87b2-6e1947f6dbd3","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_6C2xpnwD1ce4Uthmq7Ma5Fl3CPZ52wQa/operationStatuses/08585773313536024281?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_nfmKdzool9bvdJ1kgVsCFZ2ljYUGP4GG/operationStatuses/08585754435174516312?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -1047,7 +1093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:38:53 GMT + - Tue, 13 Jul 2021 08:02:48 GMT expires: - '-1' pragma: @@ -1057,7 +1103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1075,51 +1121,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773313536024281?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: - - Mon, 21 Jun 2021 11:39:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --admin-password --tags --nsg-rule - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773313536024281?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/08585754435174516312?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1131,7 +1135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:39:53 GMT + - Tue, 13 Jul 2021 08:03:18 GMT expires: - '-1' pragma: @@ -1159,9 +1163,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773313536024281?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/08585754435174516312?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1173,7 +1177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:24 GMT + - Tue, 13 Jul 2021 08:03:49 GMT expires: - '-1' pragma: @@ -1201,9 +1205,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773313536024281?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/08585754435174516312?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1215,7 +1219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:53 GMT + - Tue, 13 Jul 2021 08:04:19 GMT expires: - '-1' pragma: @@ -1243,12 +1247,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_6C2xpnwD1ce4Uthmq7Ma5Fl3CPZ52wQa","name":"vm_deploy_6C2xpnwD1ce4Uthmq7Ma5Fl3CPZ52wQa","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14751410870625395532","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T11:40:29.4108239Z","duration":"PT1M37.5356167S","correlationId":"5577a960-495a-412d-9b85-eb98e3e36217","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_nfmKdzool9bvdJ1kgVsCFZ2ljYUGP4GG","name":"vm_deploy_nfmKdzool9bvdJ1kgVsCFZ2ljYUGP4GG","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11083537201268025623","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T08:04:11.1732351Z","duration":"PT1M23.1472382S","correlationId":"859d6829-a526-4df5-87b2-6e1947f6dbd3","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 @@ -1257,7 +1261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:54 GMT + - Tue, 13 Jul 2021 08:04:19 GMT expires: - '-1' pragma: @@ -1285,7 +1289,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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=2021-03-01 response: @@ -1294,16 +1298,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\": \"1fc68471-ab4e-4647-9ccb-b445cdefe416\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c4d04a9d-fb02-4906-8a22-240128521e2d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_17acfb5d4f6843ee9ee230d13a088d0f\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_0891334115714b80bcf44dc34fa0df8a\",\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_17acfb5d4f6843ee9ee230d13a088d0f\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_0891334115714b80bcf44dc34fa0df8a\"\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\": @@ -1317,16 +1321,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\": \"2021-06-21T11:40:55+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T08:04:20+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_OsDisk_1_17acfb5d4f6843ee9ee230d13a088d0f\",\r\n \"statuses\": + \"clitest-vm000004_OsDisk_1_0891334115714b80bcf44dc34fa0df8a\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T11:39:12.8457843+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:03:10.1040424+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T11:40:28.4552551+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:04:07.1352169+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}" @@ -1338,7 +1342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:54 GMT + - Tue, 13 Jul 2021 08:04:19 GMT expires: - '-1' pragma: @@ -1355,7 +1359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3971,Microsoft.Compute/LowCostGet30Min;31974 status: code: 200 message: OK @@ -1373,20 +1377,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"27887893-eb10-4a5d-b707-e1e3f54fa21b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6aa4616d-02e1-4172-b229-9e4da1de7d1a\\\"\",\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\": \"adc35551-040c-448f-9e41-43d85c60b4ac\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c9adadcf-274e-4ff5-a6f9-0a0a9f67065e\",\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/\\\"27887893-eb10-4a5d-b707-e1e3f54fa21b\\\"\",\r\n + \ \"etag\": \"W/\\\"6aa4616d-02e1-4172-b229-9e4da1de7d1a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -1395,8 +1399,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\": - \"3gb2uuvb4v1etaur1udfeki2qa.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C7-86-48\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"ynvecxdrt0dendd2bneily0txh.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-A0-8E-92\",\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\": @@ -1410,9 +1414,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:54 GMT + - Tue, 13 Jul 2021 08:04:20 GMT etag: - - W/"27887893-eb10-4a5d-b707-e1e3f54fa21b" + - W/"6aa4616d-02e1-4172-b229-9e4da1de7d1a" expires: - '-1' pragma: @@ -1429,7 +1433,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 425ede32-603a-4105-8421-462ad2358e7d + - 6390ab08-179f-4902-bb0d-fc0900570a15 status: code: 200 message: OK @@ -1447,18 +1451,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"672f5bcd-e969-48ea-8c18-a7532b76ca07\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"44ea6454-c50c-49af-9b13-7fe89eb295c4\\\"\",\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\": \"e2b850fa-d0a4-49c3-bc6b-1c6bbfe57da8\",\r\n - \ \"ipAddress\": \"13.76.42.80\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"58723792-433b-45a1-95d8-20459d5ddf27\",\r\n + \ \"ipAddress\": \"20.184.3.223\",\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 @@ -1467,13 +1471,13 @@ interactions: cache-control: - no-cache content-length: - - '1180' + - '1181' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:54 GMT + - Tue, 13 Jul 2021 08:04:20 GMT etag: - - W/"672f5bcd-e969-48ea-8c18-a7532b76ca07" + - W/"44ea6454-c50c-49af-9b13-7fe89eb295c4" expires: - '-1' pragma: @@ -1490,7 +1494,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5c4b3ab-1692-4b16-a73d-b8cd08e26dbe + - 445242f1-3450-476a-90a6-0119feaf8b11 status: code: 200 message: OK @@ -1508,7 +1512,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1517,16 +1521,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\": \"b1caa2fc-11e2-4516-a512-e74c001f409b\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c54c9c3b-9ff1-4e44-b0f7-cfbed59d46a6\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_0ed1c3426f8e4037beef622802b79d86\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_bd9b5a622b2c40349937101e2e5b7307\",\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_0ed1c3426f8e4037beef622802b79d86\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_bd9b5a622b2c40349937101e2e5b7307\"\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\": @@ -1540,11 +1544,11 @@ interactions: cache-control: - no-cache content-length: - - '2249' + - '2255' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:40:55 GMT + - Tue, 13 Jul 2021 08:04:20 GMT expires: - '-1' pragma: @@ -1561,7 +1565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31987 + - Microsoft.Compute/LowCostGet3Min;3970,Microsoft.Compute/LowCostGet30Min;31973 status: code: 200 message: OK @@ -1579,12 +1583,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A37%3A42.9800104Z''\"","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-07-13T08%3A01%3A08.6155626Z''\"","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 @@ -1593,7 +1597,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:40:56 GMT + - Tue, 13 Jul 2021 08:04:20 GMT expires: - '-1' pragma: @@ -1625,15 +1629,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T21: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1642,7 +1646,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:40:56 GMT + - Tue, 13 Jul 2021 08:04:21 GMT expires: - '-1' pragma: @@ -1658,7 +1662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1678,24 +1682,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3/protectableItems/vm;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","name":"iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm5eob3","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.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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '5751' + - '7011' content-type: - application/json date: - - Mon, 21 Jun 2021 11:40:56 GMT + - Tue, 13 Jul 2021 08:04:21 GMT expires: - '-1' pragma: @@ -1717,57 +1721,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 11:40: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1782,30 +1735,36 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3/protectableItems/vm;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","name":"iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm5eob3","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.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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '7011' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:40:58 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -1813,10 +1772,12 @@ interactions: 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 @@ -1826,37 +1787,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-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=2021-01-01 response: body: string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 11:40:59 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -1876,39 +1843,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:41:00 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '94' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1923,39 +1896,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:41:01 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '93' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1970,39 +1949,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:41:03 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '92' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2017,39 +2002,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:41:04 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '91' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2064,544 +2055,40 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:41:05 GMT + - Tue, 13 Jul 2021 08:04: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 11:41: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 11:41: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/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/db17e437-7d16-4bc8-80b8-53f8de705d95?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Mon, 21 Jun 2021 11:41:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '8271' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:41: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: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy", - "protectedItemType": "Microsoft.Compute/virtualMachines"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - Content-Length: - - '556' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 11:41: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - response: - body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:41:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - response: - body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:41:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - response: - body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:41:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - response: - body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:41:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 - response: - body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:41: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: - - '145' + - '90' x-powered-by: - ASP.NET status: @@ -2621,15 +2108,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2638,7 +2125,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:17 GMT + - Tue, 13 Jul 2021 08:04:29 GMT expires: - '-1' pragma: @@ -2654,7 +2141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '89' x-powered-by: - ASP.NET status: @@ -2674,15 +2161,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2691,7 +2178,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:18 GMT + - Tue, 13 Jul 2021 08:04:30 GMT expires: - '-1' pragma: @@ -2707,7 +2194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '88' x-powered-by: - ASP.NET status: @@ -2727,15 +2214,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2744,7 +2231,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:19 GMT + - Tue, 13 Jul 2021 08:04:32 GMT expires: - '-1' pragma: @@ -2760,7 +2247,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '87' x-powered-by: - ASP.NET status: @@ -2780,15 +2267,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2797,7 +2284,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:20 GMT + - Tue, 13 Jul 2021 08:04:33 GMT expires: - '-1' pragma: @@ -2813,7 +2300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '86' x-powered-by: - ASP.NET status: @@ -2833,15 +2320,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2850,7 +2337,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:22 GMT + - Tue, 13 Jul 2021 08:04:34 GMT expires: - '-1' pragma: @@ -2866,7 +2353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '85' x-powered-by: - ASP.NET status: @@ -2886,15 +2373,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2903,7 +2390,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:23 GMT + - Tue, 13 Jul 2021 08:04:35 GMT expires: - '-1' pragma: @@ -2919,7 +2406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '84' x-powered-by: - ASP.NET status: @@ -2939,15 +2426,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2956,7 +2443,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:24 GMT + - Tue, 13 Jul 2021 08:04:36 GMT expires: - '-1' pragma: @@ -2972,7 +2459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '83' x-powered-by: - ASP.NET status: @@ -2992,15 +2479,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3009,7 +2496,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:25 GMT + - Tue, 13 Jul 2021 08:04:38 GMT expires: - '-1' pragma: @@ -3025,7 +2512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '82' x-powered-by: - ASP.NET status: @@ -3045,15 +2532,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3062,7 +2549,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:27 GMT + - Tue, 13 Jul 2021 08:04:39 GMT expires: - '-1' pragma: @@ -3078,7 +2565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '81' x-powered-by: - ASP.NET status: @@ -3098,15 +2585,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3115,7 +2602,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:28 GMT + - Tue, 13 Jul 2021 08:04:40 GMT expires: - '-1' pragma: @@ -3131,7 +2618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '80' x-powered-by: - ASP.NET status: @@ -3151,15 +2638,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3168,7 +2655,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:29 GMT + - Tue, 13 Jul 2021 08:04:41 GMT expires: - '-1' pragma: @@ -3184,7 +2671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '79' x-powered-by: - ASP.NET status: @@ -3204,15 +2691,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3221,7 +2708,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:30 GMT + - Tue, 13 Jul 2021 08:04:43 GMT expires: - '-1' pragma: @@ -3237,7 +2724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '78' x-powered-by: - ASP.NET status: @@ -3257,15 +2744,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3274,7 +2761,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:32 GMT + - Tue, 13 Jul 2021 08:04:44 GMT expires: - '-1' pragma: @@ -3290,7 +2777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '77' x-powered-by: - ASP.NET status: @@ -3310,15 +2797,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3327,7 +2814,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:33 GMT + - Tue, 13 Jul 2021 08:04:45 GMT expires: - '-1' pragma: @@ -3343,7 +2830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '76' x-powered-by: - ASP.NET status: @@ -3363,15 +2850,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3380,7 +2867,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:34 GMT + - Tue, 13 Jul 2021 08:04:47 GMT expires: - '-1' pragma: @@ -3396,7 +2883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '75' x-powered-by: - ASP.NET status: @@ -3416,15 +2903,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3433,7 +2920,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:36 GMT + - Tue, 13 Jul 2021 08:04:48 GMT expires: - '-1' pragma: @@ -3449,7 +2936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '74' x-powered-by: - ASP.NET status: @@ -3469,15 +2956,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3486,7 +2973,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:38 GMT + - Tue, 13 Jul 2021 08:04:50 GMT expires: - '-1' pragma: @@ -3502,7 +2989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '73' x-powered-by: - ASP.NET status: @@ -3522,15 +3009,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3539,7 +3026,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:39 GMT + - Tue, 13 Jul 2021 08:04:51 GMT expires: - '-1' pragma: @@ -3555,7 +3042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '72' x-powered-by: - ASP.NET status: @@ -3575,15 +3062,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3592,7 +3079,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:40 GMT + - Tue, 13 Jul 2021 08:04:52 GMT expires: - '-1' pragma: @@ -3608,7 +3095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '71' x-powered-by: - ASP.NET status: @@ -3628,15 +3115,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3645,7 +3132,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:41 GMT + - Tue, 13 Jul 2021 08:04:53 GMT expires: - '-1' pragma: @@ -3661,7 +3148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '70' x-powered-by: - ASP.NET status: @@ -3681,15 +3168,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"InProgress","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"InProgress","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3698,7 +3185,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:42 GMT + - Tue, 13 Jul 2021 08:04:54 GMT expires: - '-1' pragma: @@ -3714,7 +3201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '69' x-powered-by: - ASP.NET status: @@ -3734,15 +3221,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/49383bc8-aad9-4b07-a7fd-eb5c05578d75?api-version=2021-01-01 response: body: - string: '{"id":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","name":"e0d84341-0ada-4fe2-8ec7-6f9f5d2cbd09","status":"Succeeded","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"2021-06-21T11:41:11.3870523Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"808a70f9-3dde-4c9b-92c5-0e2f4ba66ef4"}}' + string: '{"id":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","name":"49383bc8-aad9-4b07-a7fd-eb5c05578d75","status":"Succeeded","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"2021-07-13T08:04:23.6981302Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5bc6a563-12c2-4d25-ba89-e18820877b91"}}' headers: cache-control: - no-cache @@ -3751,7 +3238,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:44 GMT + - Tue, 13 Jul 2021 08:04:56 GMT expires: - '-1' pragma: @@ -3767,7 +3254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '68' x-powered-by: - ASP.NET status: @@ -3787,16 +3274,16 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/808a70f9-3dde-4c9b-92c5-0e2f4ba66ef4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bc6a563-12c2-4d25-ba89-e18820877b91?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/808a70f9-3dde-4c9b-92c5-0e2f4ba66ef4","name":"808a70f9-3dde-4c9b-92c5-0e2f4ba66ef4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.4421263S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T11:41:11.3870523Z","endTime":"2021-06-21T11:41:42.8291786Z","activityId":"8a0e5af5-d285-11eb-ba88-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bc6a563-12c2-4d25-ba89-e18820877b91","name":"5bc6a563-12c2-4d25-ba89-e18820877b91","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.1199853S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:04:23.6981302Z","endTime":"2021-07-13T08:04:54.8181155Z","activityId":"ec701992-e3b0-11eb-8eda-00155ddc6812"}}' headers: cache-control: - no-cache @@ -3805,7 +3292,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:44 GMT + - Tue, 13 Jul 2021 08:04:56 GMT expires: - '-1' pragma: @@ -3822,7 +3309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -3842,7 +3329,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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?api-version=2021-03-01 response: @@ -3851,16 +3338,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\": \"1fc68471-ab4e-4647-9ccb-b445cdefe416\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c4d04a9d-fb02-4906-8a22-240128521e2d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_17acfb5d4f6843ee9ee230d13a088d0f\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_0891334115714b80bcf44dc34fa0df8a\",\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_17acfb5d4f6843ee9ee230d13a088d0f\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_0891334115714b80bcf44dc34fa0df8a\"\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\": @@ -3878,7 +3365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:41:44 GMT + - Tue, 13 Jul 2021 08:04:56 GMT expires: - '-1' pragma: @@ -3895,7 +3382,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31984 + - Microsoft.Compute/LowCostGet3Min;3960,Microsoft.Compute/LowCostGet30Min;31963 status: code: 200 message: OK @@ -3913,12 +3400,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A37%3A42.9800104Z''\"","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-07-13T08%3A01%3A08.6155626Z''\"","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 @@ -3927,7 +3414,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:45 GMT + - Tue, 13 Jul 2021 08:04:56 GMT expires: - '-1' pragma: @@ -3959,15 +3446,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T21:30: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache @@ -3976,7 +3463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:45 GMT + - Tue, 13 Jul 2021 08:04:57 GMT expires: - '-1' pragma: @@ -3992,7 +3479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -4012,24 +3499,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:46 GMT + - Tue, 13 Jul 2021 08:04:57 GMT expires: - '-1' pragma: @@ -4065,24 +3552,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:46 GMT + - Tue, 13 Jul 2021 08:04:58 GMT expires: - '-1' pragma: @@ -4124,8 +3611,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -4135,17 +3622,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 11:41:46 GMT + - Tue, 13 Jul 2021 08: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/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4153,7 +3640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -4173,15 +3660,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4190,7 +3677,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:47 GMT + - Tue, 13 Jul 2021 08:04:59 GMT expires: - '-1' pragma: @@ -4226,15 +3713,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4243,7 +3730,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:48 GMT + - Tue, 13 Jul 2021 08:05:00 GMT expires: - '-1' pragma: @@ -4279,15 +3766,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4296,7 +3783,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:50 GMT + - Tue, 13 Jul 2021 08:05:01 GMT expires: - '-1' pragma: @@ -4332,15 +3819,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4349,7 +3836,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:51 GMT + - Tue, 13 Jul 2021 08:05:03 GMT expires: - '-1' pragma: @@ -4385,15 +3872,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4402,7 +3889,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:52 GMT + - Tue, 13 Jul 2021 08:05:04 GMT expires: - '-1' pragma: @@ -4438,15 +3925,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4455,7 +3942,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:53 GMT + - Tue, 13 Jul 2021 08:05:05 GMT expires: - '-1' pragma: @@ -4491,15 +3978,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4508,7 +3995,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:54 GMT + - Tue, 13 Jul 2021 08:05:06 GMT expires: - '-1' pragma: @@ -4544,15 +4031,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4561,7 +4048,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:56 GMT + - Tue, 13 Jul 2021 08:05:08 GMT expires: - '-1' pragma: @@ -4597,15 +4084,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4614,7 +4101,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:57 GMT + - Tue, 13 Jul 2021 08:05:09 GMT expires: - '-1' pragma: @@ -4650,15 +4137,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4667,7 +4154,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:58 GMT + - Tue, 13 Jul 2021 08:05:10 GMT expires: - '-1' pragma: @@ -4703,15 +4190,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4720,7 +4207,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:41:59 GMT + - Tue, 13 Jul 2021 08:05:11 GMT expires: - '-1' pragma: @@ -4756,15 +4243,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4773,7 +4260,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:01 GMT + - Tue, 13 Jul 2021 08:05:12 GMT expires: - '-1' pragma: @@ -4809,15 +4296,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4826,7 +4313,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:02 GMT + - Tue, 13 Jul 2021 08:05:14 GMT expires: - '-1' pragma: @@ -4862,15 +4349,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4879,7 +4366,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:03 GMT + - Tue, 13 Jul 2021 08:05:15 GMT expires: - '-1' pragma: @@ -4915,15 +4402,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4932,7 +4419,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:04 GMT + - Tue, 13 Jul 2021 08:05:16 GMT expires: - '-1' pragma: @@ -4968,15 +4455,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4985,7 +4472,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:05 GMT + - Tue, 13 Jul 2021 08:05:17 GMT expires: - '-1' pragma: @@ -5021,15 +4508,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5038,7 +4525,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:07 GMT + - Tue, 13 Jul 2021 08:05:18 GMT expires: - '-1' pragma: @@ -5074,15 +4561,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5091,7 +4578,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:08 GMT + - Tue, 13 Jul 2021 08:05:20 GMT expires: - '-1' pragma: @@ -5127,15 +4614,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5144,7 +4631,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:09 GMT + - Tue, 13 Jul 2021 08:05:21 GMT expires: - '-1' pragma: @@ -5180,15 +4667,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5197,7 +4684,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:10 GMT + - Tue, 13 Jul 2021 08:05:22 GMT expires: - '-1' pragma: @@ -5233,15 +4720,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5250,7 +4737,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:11 GMT + - Tue, 13 Jul 2021 08:05:23 GMT expires: - '-1' pragma: @@ -5286,15 +4773,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5303,7 +4790,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:14 GMT + - Tue, 13 Jul 2021 08:05:25 GMT expires: - '-1' pragma: @@ -5339,15 +4826,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5356,7 +4843,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:15 GMT + - Tue, 13 Jul 2021 08:05:26 GMT expires: - '-1' pragma: @@ -5392,15 +4879,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5409,7 +4896,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:16 GMT + - Tue, 13 Jul 2021 08:05:27 GMT expires: - '-1' pragma: @@ -5445,15 +4932,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"InProgress","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5462,7 +4949,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:17 GMT + - Tue, 13 Jul 2021 08:05:28 GMT expires: - '-1' pragma: @@ -5498,24 +4985,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4767b9cb-682d-4f57-a52b-391f6963ec2d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"id":"4767b9cb-682d-4f57-a52b-391f6963ec2d","name":"4767b9cb-682d-4f57-a52b-391f6963ec2d","status":"Succeeded","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"2021-06-21T11:41:47.6521846Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5a78d203-57b4-4018-bd60-2d1a316e82e7"}}' + string: '{"id":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"InProgress","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:19 GMT + - Tue, 13 Jul 2021 08:05:29 GMT expires: - '-1' pragma: @@ -5551,79 +5038,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5a78d203-57b4-4018-bd60-2d1a316e82e7?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5a78d203-57b4-4018-bd60-2d1a316e82e7","name":"5a78d203-57b4-4018-bd60-2d1a316e82e7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31.0552571S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T11:41:47.6521846Z","endTime":"2021-06-21T11:42:18.7074417Z","activityId":"a76cd56a-d285-11eb-8286-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '968' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:42: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: - - '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: - - --backup-management-type -n -v -g - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/82b88533-5d06-4c6c-94d2-f79cabf752e3?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"82b88533-5d06-4c6c-94d2-f79cabf752e3","name":"82b88533-5d06-4c6c-94d2-f79cabf752e3","status":"Succeeded","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"2021-07-13T08:04:59.2514578Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2b327470-d94c-4d6d-bb03-3569c14aa1bb"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:20 GMT + - Tue, 13 Jul 2021 08:05:31 GMT expires: - '-1' pragma: @@ -5639,7 +5071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '123' x-powered-by: - ASP.NET status: @@ -5653,159 +5085,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"clitest-vm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n - \ \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n - \ \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": - \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"b1caa2fc-11e2-4516-a512-e74c001f409b\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": - \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_0ed1c3426f8e4037beef622802b79d86\",\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_0ed1c3426f8e4037beef622802b79d86\"\r\n - \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000003\",\r\n - \ \"adminUsername\": \"clitest-vm000003\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2249' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Jun 2021 11:42:20 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;3988,Microsoft.Compute/LowCostGet30Min;31981 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type -v -g + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b327470-d94c-4d6d-bb03-3569c14aa1bb?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b327470-d94c-4d6d-bb03-3569c14aa1bb","name":"2b327470-d94c-4d6d-bb03-3569c14aa1bb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31.3744251S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:04:59.2514578Z","endTime":"2021-07-13T08:05:30.6258829Z","activityId":"01da1328-e3b1-11eb-abbf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2429' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:20 GMT + - Tue, 13 Jul 2021 08:05: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 container list - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type -v -g --query - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2429' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:42:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -5816,7 +5126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -5830,30 +5140,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query + - --backup-management-type -n -v -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"1431853631","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","isArchiveEnabled":false}},{"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":"1094040729","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + 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: - - '3957' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:22 GMT + - Tue, 13 Jul 2021 08:05:32 GMT expires: - '-1' pragma: @@ -5883,37 +5193,56 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - vm show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -n -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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/backupProtectedItems?api-version=2021-01-01&$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.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-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/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":"1431853631","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","isArchiveEnabled":false}},{"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":"1094040729","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + 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\": \"c54c9c3b-9ff1-4e44-b0f7-cfbed59d46a6\",\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.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_bd9b5a622b2c40349937101e2e5b7307\",\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_bd9b5a622b2c40349937101e2e5b7307\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000003\",\r\n + \ \"adminUsername\": \"clitest-vm000003\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3957' + - '2255' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:42:23 GMT + - Tue, 13 Jul 2021 08:05:32 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: @@ -5922,10 +5251,8 @@ interactions: - 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;3963,Microsoft.Compute/LowCostGet30Min;31958 status: code: 200 message: OK @@ -5937,50 +5264,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --backup-management-type -v -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '' + 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"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '2429' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:42:24 GMT + - Tue, 13 Jul 2021 08:05:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-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: @@ -5989,31 +5317,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 --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","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","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2429' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:24 GMT + - Tue, 13 Jul 2021 08:05:33 GMT expires: - '-1' pragma: @@ -6029,7 +5356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -6043,31 +5370,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","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":"383750582","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"1342627905","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3956' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:25 GMT + - Tue, 13 Jul 2021 08:05:34 GMT expires: - '-1' pragma: @@ -6083,7 +5409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -6104,24 +5430,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","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":"383750582","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"1342627905","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3956' content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:27 GMT + - Tue, 13 Jul 2021 08:05:34 GMT expires: - '-1' pragma: @@ -6137,7 +5463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -6154,49 +5480,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","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/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:42:28 GMT + - Tue, 13 Jul 2021 08:05: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/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + 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: @@ -6212,15 +5536,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6229,7 +5553,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:29 GMT + - Tue, 13 Jul 2021 08:05:34 GMT expires: - '-1' pragma: @@ -6245,7 +5569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '139' x-powered-by: - ASP.NET status: @@ -6266,15 +5590,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6283,7 +5607,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:30 GMT + - Tue, 13 Jul 2021 08:05:36 GMT expires: - '-1' pragma: @@ -6299,7 +5623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -6320,15 +5644,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6337,7 +5661,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:31 GMT + - Tue, 13 Jul 2021 08:05:37 GMT expires: - '-1' pragma: @@ -6353,7 +5677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -6374,15 +5698,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6391,7 +5715,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:33 GMT + - Tue, 13 Jul 2021 08:05:38 GMT expires: - '-1' pragma: @@ -6407,7 +5731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -6428,15 +5752,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6445,7 +5769,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:34 GMT + - Tue, 13 Jul 2021 08:05:39 GMT expires: - '-1' pragma: @@ -6461,7 +5785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '134' x-powered-by: - ASP.NET status: @@ -6482,15 +5806,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6499,7 +5823,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:35 GMT + - Tue, 13 Jul 2021 08:05:40 GMT expires: - '-1' pragma: @@ -6515,7 +5839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '133' x-powered-by: - ASP.NET status: @@ -6536,15 +5860,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6553,7 +5877,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:36 GMT + - Tue, 13 Jul 2021 08:05:43 GMT expires: - '-1' pragma: @@ -6569,7 +5893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '132' x-powered-by: - ASP.NET status: @@ -6590,15 +5914,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6607,7 +5931,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:37 GMT + - Tue, 13 Jul 2021 08:05:44 GMT expires: - '-1' pragma: @@ -6623,7 +5947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '131' x-powered-by: - ASP.NET status: @@ -6644,15 +5968,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6661,7 +5985,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:39 GMT + - Tue, 13 Jul 2021 08:05:45 GMT expires: - '-1' pragma: @@ -6677,7 +6001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '130' x-powered-by: - ASP.NET status: @@ -6698,15 +6022,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6715,7 +6039,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:40 GMT + - Tue, 13 Jul 2021 08:05:46 GMT expires: - '-1' pragma: @@ -6731,7 +6055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '129' x-powered-by: - ASP.NET status: @@ -6752,15 +6076,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6769,7 +6093,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:41 GMT + - Tue, 13 Jul 2021 08:05:47 GMT expires: - '-1' pragma: @@ -6785,7 +6109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '128' x-powered-by: - ASP.NET status: @@ -6806,15 +6130,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6823,7 +6147,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:42 GMT + - Tue, 13 Jul 2021 08:05:49 GMT expires: - '-1' pragma: @@ -6839,7 +6163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '127' x-powered-by: - ASP.NET status: @@ -6860,15 +6184,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6877,7 +6201,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:44 GMT + - Tue, 13 Jul 2021 08:05:50 GMT expires: - '-1' pragma: @@ -6893,7 +6217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '126' x-powered-by: - ASP.NET status: @@ -6914,15 +6238,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6931,7 +6255,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:45 GMT + - Tue, 13 Jul 2021 08:05:51 GMT expires: - '-1' pragma: @@ -6947,7 +6271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '125' x-powered-by: - ASP.NET status: @@ -6968,15 +6292,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6985,7 +6309,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:46 GMT + - Tue, 13 Jul 2021 08:05:52 GMT expires: - '-1' pragma: @@ -7001,7 +6325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '124' x-powered-by: - ASP.NET status: @@ -7022,15 +6346,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7039,7 +6363,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:48 GMT + - Tue, 13 Jul 2021 08:05:54 GMT expires: - '-1' pragma: @@ -7055,7 +6379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '123' x-powered-by: - ASP.NET status: @@ -7076,15 +6400,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7093,7 +6417,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:49 GMT + - Tue, 13 Jul 2021 08:05:55 GMT expires: - '-1' pragma: @@ -7109,7 +6433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '122' x-powered-by: - ASP.NET status: @@ -7130,15 +6454,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7147,7 +6471,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:50 GMT + - Tue, 13 Jul 2021 08:05:56 GMT expires: - '-1' pragma: @@ -7163,7 +6487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '121' x-powered-by: - ASP.NET status: @@ -7184,15 +6508,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7201,7 +6525,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:51 GMT + - Tue, 13 Jul 2021 08:05:57 GMT expires: - '-1' pragma: @@ -7217,7 +6541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '120' x-powered-by: - ASP.NET status: @@ -7238,15 +6562,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7255,7 +6579,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:53 GMT + - Tue, 13 Jul 2021 08:05:58 GMT expires: - '-1' pragma: @@ -7271,7 +6595,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '119' x-powered-by: - ASP.NET status: @@ -7292,15 +6616,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7309,7 +6633,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:54 GMT + - Tue, 13 Jul 2021 08:06:00 GMT expires: - '-1' pragma: @@ -7325,7 +6649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '118' x-powered-by: - ASP.NET status: @@ -7346,15 +6670,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7363,7 +6687,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:55 GMT + - Tue, 13 Jul 2021 08:06:01 GMT expires: - '-1' pragma: @@ -7379,7 +6703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '117' x-powered-by: - ASP.NET status: @@ -7400,15 +6724,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7417,7 +6741,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:56 GMT + - Tue, 13 Jul 2021 08:06:02 GMT expires: - '-1' pragma: @@ -7433,7 +6757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '116' x-powered-by: - ASP.NET status: @@ -7454,15 +6778,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7471,7 +6795,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:57 GMT + - Tue, 13 Jul 2021 08:06:03 GMT expires: - '-1' pragma: @@ -7487,7 +6811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '115' x-powered-by: - ASP.NET status: @@ -7508,15 +6832,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7525,7 +6849,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:42:59 GMT + - Tue, 13 Jul 2021 08:06:04 GMT expires: - '-1' pragma: @@ -7541,7 +6865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '114' x-powered-by: - ASP.NET status: @@ -7562,15 +6886,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7579,7 +6903,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:00 GMT + - Tue, 13 Jul 2021 08:06:06 GMT expires: - '-1' pragma: @@ -7595,7 +6919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '113' x-powered-by: - ASP.NET status: @@ -7616,15 +6940,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7633,7 +6957,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:01 GMT + - Tue, 13 Jul 2021 08:06:07 GMT expires: - '-1' pragma: @@ -7649,7 +6973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '112' x-powered-by: - ASP.NET status: @@ -7670,15 +6994,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7687,7 +7011,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:02 GMT + - Tue, 13 Jul 2021 08:06:08 GMT expires: - '-1' pragma: @@ -7703,7 +7027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '111' x-powered-by: - ASP.NET status: @@ -7724,15 +7048,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7741,7 +7065,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:04 GMT + - Tue, 13 Jul 2021 08:06:09 GMT expires: - '-1' pragma: @@ -7757,7 +7081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '110' x-powered-by: - ASP.NET status: @@ -7778,15 +7102,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7795,7 +7119,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:05 GMT + - Tue, 13 Jul 2021 08:06:10 GMT expires: - '-1' pragma: @@ -7811,7 +7135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '109' x-powered-by: - ASP.NET status: @@ -7832,15 +7156,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7849,7 +7173,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:06 GMT + - Tue, 13 Jul 2021 08:06:12 GMT expires: - '-1' pragma: @@ -7865,7 +7189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '108' x-powered-by: - ASP.NET status: @@ -7886,15 +7210,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7903,7 +7227,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:08 GMT + - Tue, 13 Jul 2021 08:06:13 GMT expires: - '-1' pragma: @@ -7919,7 +7243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '107' x-powered-by: - ASP.NET status: @@ -7940,15 +7264,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7957,7 +7281,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:09 GMT + - Tue, 13 Jul 2021 08:06:14 GMT expires: - '-1' pragma: @@ -7973,7 +7297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '106' x-powered-by: - ASP.NET status: @@ -7994,15 +7318,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8011,7 +7335,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:10 GMT + - Tue, 13 Jul 2021 08:06:15 GMT expires: - '-1' pragma: @@ -8027,7 +7351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '105' x-powered-by: - ASP.NET status: @@ -8048,15 +7372,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8065,7 +7389,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:11 GMT + - Tue, 13 Jul 2021 08:06:16 GMT expires: - '-1' pragma: @@ -8081,7 +7405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '104' x-powered-by: - ASP.NET status: @@ -8102,15 +7426,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8119,7 +7443,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:13 GMT + - Tue, 13 Jul 2021 08:06:18 GMT expires: - '-1' pragma: @@ -8135,7 +7459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '103' x-powered-by: - ASP.NET status: @@ -8156,15 +7480,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8173,7 +7497,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:14 GMT + - Tue, 13 Jul 2021 08:06:19 GMT expires: - '-1' pragma: @@ -8189,7 +7513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '102' x-powered-by: - ASP.NET status: @@ -8210,15 +7534,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8227,7 +7551,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:15 GMT + - Tue, 13 Jul 2021 08:06:20 GMT expires: - '-1' pragma: @@ -8243,7 +7567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '101' x-powered-by: - ASP.NET status: @@ -8264,15 +7588,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8281,7 +7605,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:16 GMT + - Tue, 13 Jul 2021 08:06:21 GMT expires: - '-1' pragma: @@ -8297,7 +7621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '100' x-powered-by: - ASP.NET status: @@ -8318,15 +7642,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8335,7 +7659,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:17 GMT + - Tue, 13 Jul 2021 08:06:23 GMT expires: - '-1' pragma: @@ -8351,7 +7675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '99' x-powered-by: - ASP.NET status: @@ -8372,15 +7696,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8389,7 +7713,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:18 GMT + - Tue, 13 Jul 2021 08:06:24 GMT expires: - '-1' pragma: @@ -8405,7 +7729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '98' x-powered-by: - ASP.NET status: @@ -8426,15 +7750,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8443,7 +7767,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:20 GMT + - Tue, 13 Jul 2021 08:06:25 GMT expires: - '-1' pragma: @@ -8459,7 +7783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '97' x-powered-by: - ASP.NET status: @@ -8480,15 +7804,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8497,7 +7821,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:21 GMT + - Tue, 13 Jul 2021 08:06:26 GMT expires: - '-1' pragma: @@ -8513,7 +7837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '96' x-powered-by: - ASP.NET status: @@ -8534,15 +7858,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8551,7 +7875,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:22 GMT + - Tue, 13 Jul 2021 08:06:27 GMT expires: - '-1' pragma: @@ -8567,7 +7891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '95' x-powered-by: - ASP.NET status: @@ -8588,15 +7912,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8605,7 +7929,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:23 GMT + - Tue, 13 Jul 2021 08:06:29 GMT expires: - '-1' pragma: @@ -8621,7 +7945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '94' x-powered-by: - ASP.NET status: @@ -8642,15 +7966,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8659,7 +7983,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:25 GMT + - Tue, 13 Jul 2021 08:06:30 GMT expires: - '-1' pragma: @@ -8675,7 +7999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '93' x-powered-by: - ASP.NET status: @@ -8696,15 +8020,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8713,7 +8037,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:27 GMT + - Tue, 13 Jul 2021 08:06:31 GMT expires: - '-1' pragma: @@ -8729,7 +8053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '92' x-powered-by: - ASP.NET status: @@ -8750,15 +8074,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8767,7 +8091,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:28 GMT + - Tue, 13 Jul 2021 08:06:32 GMT expires: - '-1' pragma: @@ -8783,7 +8107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '91' x-powered-by: - ASP.NET status: @@ -8804,15 +8128,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8821,7 +8145,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:29 GMT + - Tue, 13 Jul 2021 08:06:34 GMT expires: - '-1' pragma: @@ -8837,7 +8161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '90' x-powered-by: - ASP.NET status: @@ -8858,15 +8182,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8875,7 +8199,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:30 GMT + - Tue, 13 Jul 2021 08:06:35 GMT expires: - '-1' pragma: @@ -8891,7 +8215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '89' x-powered-by: - ASP.NET status: @@ -8912,15 +8236,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8929,7 +8253,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:32 GMT + - Tue, 13 Jul 2021 08:06:36 GMT expires: - '-1' pragma: @@ -8945,7 +8269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '88' x-powered-by: - ASP.NET status: @@ -8966,15 +8290,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8983,7 +8307,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:33 GMT + - Tue, 13 Jul 2021 08:06:37 GMT expires: - '-1' pragma: @@ -8999,7 +8323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '87' x-powered-by: - ASP.NET status: @@ -9020,15 +8344,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9037,7 +8361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:34 GMT + - Tue, 13 Jul 2021 08:06:39 GMT expires: - '-1' pragma: @@ -9053,7 +8377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '86' x-powered-by: - ASP.NET status: @@ -9074,15 +8398,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9091,7 +8415,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:36 GMT + - Tue, 13 Jul 2021 08:06:40 GMT expires: - '-1' pragma: @@ -9107,7 +8431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '85' x-powered-by: - ASP.NET status: @@ -9128,15 +8452,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9145,7 +8469,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:37 GMT + - Tue, 13 Jul 2021 08:06:41 GMT expires: - '-1' pragma: @@ -9161,7 +8485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '84' x-powered-by: - ASP.NET status: @@ -9182,15 +8506,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9199,7 +8523,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:38 GMT + - Tue, 13 Jul 2021 08:06:42 GMT expires: - '-1' pragma: @@ -9215,7 +8539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '83' x-powered-by: - ASP.NET status: @@ -9236,15 +8560,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9253,7 +8577,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:39 GMT + - Tue, 13 Jul 2021 08:06:44 GMT expires: - '-1' pragma: @@ -9269,7 +8593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '82' x-powered-by: - ASP.NET status: @@ -9290,15 +8614,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9307,7 +8631,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:40 GMT + - Tue, 13 Jul 2021 08:06:45 GMT expires: - '-1' pragma: @@ -9323,7 +8647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '81' x-powered-by: - ASP.NET status: @@ -9344,15 +8668,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9361,7 +8685,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:42 GMT + - Tue, 13 Jul 2021 08:06:46 GMT expires: - '-1' pragma: @@ -9377,7 +8701,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '80' x-powered-by: - ASP.NET status: @@ -9398,15 +8722,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9415,7 +8739,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:43 GMT + - Tue, 13 Jul 2021 08:06:47 GMT expires: - '-1' pragma: @@ -9431,7 +8755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '79' x-powered-by: - ASP.NET status: @@ -9452,15 +8776,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9469,7 +8793,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:44 GMT + - Tue, 13 Jul 2021 08:06:49 GMT expires: - '-1' pragma: @@ -9485,7 +8809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '78' x-powered-by: - ASP.NET status: @@ -9506,15 +8830,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9523,7 +8847,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:45 GMT + - Tue, 13 Jul 2021 08:06:50 GMT expires: - '-1' pragma: @@ -9539,7 +8863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '77' x-powered-by: - ASP.NET status: @@ -9560,15 +8884,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9577,7 +8901,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:47 GMT + - Tue, 13 Jul 2021 08:06:51 GMT expires: - '-1' pragma: @@ -9593,7 +8917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '76' x-powered-by: - ASP.NET status: @@ -9614,15 +8938,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9631,7 +8955,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:48 GMT + - Tue, 13 Jul 2021 08:06:52 GMT expires: - '-1' pragma: @@ -9647,7 +8971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '75' x-powered-by: - ASP.NET status: @@ -9668,15 +8992,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9685,7 +9009,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:49 GMT + - Tue, 13 Jul 2021 08:06:53 GMT expires: - '-1' pragma: @@ -9701,7 +9025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '74' x-powered-by: - ASP.NET status: @@ -9722,15 +9046,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9739,7 +9063,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:51 GMT + - Tue, 13 Jul 2021 08:06:55 GMT expires: - '-1' pragma: @@ -9755,7 +9079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '73' x-powered-by: - ASP.NET status: @@ -9776,15 +9100,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9793,7 +9117,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:52 GMT + - Tue, 13 Jul 2021 08:06:56 GMT expires: - '-1' pragma: @@ -9809,7 +9133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '72' x-powered-by: - ASP.NET status: @@ -9830,15 +9154,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9847,7 +9171,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:53 GMT + - Tue, 13 Jul 2021 08:06:57 GMT expires: - '-1' pragma: @@ -9863,7 +9187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '71' x-powered-by: - ASP.NET status: @@ -9884,15 +9208,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9901,7 +9225,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:55 GMT + - Tue, 13 Jul 2021 08:06:58 GMT expires: - '-1' pragma: @@ -9917,7 +9241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '70' x-powered-by: - ASP.NET status: @@ -9938,15 +9262,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9955,7 +9279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:56 GMT + - Tue, 13 Jul 2021 08:06:59 GMT expires: - '-1' pragma: @@ -9971,7 +9295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '69' x-powered-by: - ASP.NET status: @@ -9992,15 +9316,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10009,7 +9333,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:57 GMT + - Tue, 13 Jul 2021 08:07:01 GMT expires: - '-1' pragma: @@ -10025,7 +9349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '68' x-powered-by: - ASP.NET status: @@ -10046,15 +9370,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10063,7 +9387,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:58 GMT + - Tue, 13 Jul 2021 08:07:02 GMT expires: - '-1' pragma: @@ -10079,7 +9403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '67' x-powered-by: - ASP.NET status: @@ -10100,15 +9424,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10117,7 +9441,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:43:59 GMT + - Tue, 13 Jul 2021 08:07:03 GMT expires: - '-1' pragma: @@ -10133,7 +9457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '66' x-powered-by: - ASP.NET status: @@ -10154,15 +9478,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10171,7 +9495,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:01 GMT + - Tue, 13 Jul 2021 08:07:04 GMT expires: - '-1' pragma: @@ -10187,7 +9511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '65' x-powered-by: - ASP.NET status: @@ -10208,15 +9532,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10225,7 +9549,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:02 GMT + - Tue, 13 Jul 2021 08:07:05 GMT expires: - '-1' pragma: @@ -10241,7 +9565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '64' x-powered-by: - ASP.NET status: @@ -10262,15 +9586,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10279,7 +9603,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:03 GMT + - Tue, 13 Jul 2021 08:07:07 GMT expires: - '-1' pragma: @@ -10295,7 +9619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '63' x-powered-by: - ASP.NET status: @@ -10316,15 +9640,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10333,7 +9657,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:04 GMT + - Tue, 13 Jul 2021 08:07:08 GMT expires: - '-1' pragma: @@ -10349,7 +9673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '62' x-powered-by: - ASP.NET status: @@ -10370,15 +9694,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10387,7 +9711,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:05 GMT + - Tue, 13 Jul 2021 08:07:09 GMT expires: - '-1' pragma: @@ -10403,7 +9727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '61' x-powered-by: - ASP.NET status: @@ -10424,15 +9748,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10441,7 +9765,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:07 GMT + - Tue, 13 Jul 2021 08:07:10 GMT expires: - '-1' pragma: @@ -10457,7 +9781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '60' x-powered-by: - ASP.NET status: @@ -10478,15 +9802,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10495,7 +9819,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:08 GMT + - Tue, 13 Jul 2021 08:07:12 GMT expires: - '-1' pragma: @@ -10511,7 +9835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '59' x-powered-by: - ASP.NET status: @@ -10532,15 +9856,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10549,7 +9873,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:09 GMT + - Tue, 13 Jul 2021 08:07:13 GMT expires: - '-1' pragma: @@ -10565,7 +9889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '58' x-powered-by: - ASP.NET status: @@ -10586,15 +9910,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10603,7 +9927,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:10 GMT + - Tue, 13 Jul 2021 08:07:15 GMT expires: - '-1' pragma: @@ -10619,7 +9943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '57' x-powered-by: - ASP.NET status: @@ -10640,15 +9964,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10657,7 +9981,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:12 GMT + - Tue, 13 Jul 2021 08:07:16 GMT expires: - '-1' pragma: @@ -10673,7 +9997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '56' x-powered-by: - ASP.NET status: @@ -10694,15 +10018,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10711,7 +10035,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:13 GMT + - Tue, 13 Jul 2021 08:07:17 GMT expires: - '-1' pragma: @@ -10727,7 +10051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '55' x-powered-by: - ASP.NET status: @@ -10748,15 +10072,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10765,7 +10089,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:14 GMT + - Tue, 13 Jul 2021 08:07:19 GMT expires: - '-1' pragma: @@ -10781,7 +10105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '54' x-powered-by: - ASP.NET status: @@ -10802,15 +10126,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"InProgress","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10819,7 +10143,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:15 GMT + - Tue, 13 Jul 2021 08:07:20 GMT expires: - '-1' pragma: @@ -10835,7 +10159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '53' x-powered-by: - ASP.NET status: @@ -10856,24 +10180,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","name":"4dcb1d6e-b7a6-40ef-9b60-05d42dd2c0f0","status":"Succeeded","startTime":"2021-06-21T11:42:24.4366888Z","endTime":"2021-06-21T11:42:24.4366888Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7a99fba0-d9a9-4888-a79b-12ce5fe37d29"}}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:16 GMT + - Tue, 13 Jul 2021 08:07:21 GMT expires: - '-1' pragma: @@ -10889,7 +10213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '52' x-powered-by: - ASP.NET status: @@ -10910,32 +10234,30 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7a99fba0-d9a9-4888-a79b-12ce5fe37d29?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7a99fba0-d9a9-4888-a79b-12ce5fe37d29","name":"7a99fba0-d9a9-4888-a79b-12ce5fe37d29","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M52.6633799S","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-06-21T11:42:24.4366888Z","endTime":"2021-06-21T11:44:17.1000687Z","activityId":"be409ad9-d285-11eb-a2be-c8f750f92764"}}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '973' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:17 GMT + - Tue, 13 Jul 2021 08:07:22 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -10945,7 +10267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '51' x-powered-by: - ASP.NET status: @@ -10959,30 +10281,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1094040729","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1984' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:17 GMT + - Tue, 13 Jul 2021 08:07:23 GMT expires: - '-1' pragma: @@ -10998,7 +10321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '50' x-powered-by: - ASP.NET status: @@ -11019,24 +10342,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1094040729","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1984' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:18 GMT + - Tue, 13 Jul 2021 08:07:25 GMT expires: - '-1' pragma: @@ -11052,7 +10375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '49' x-powered-by: - ASP.NET status: @@ -11069,47 +10392,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","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/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:44:19 GMT + - Tue, 13 Jul 2021 08:07: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/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + 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: @@ -11125,15 +10450,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"InProgress","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11142,7 +10467,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:20 GMT + - Tue, 13 Jul 2021 08:07:27 GMT expires: - '-1' pragma: @@ -11158,7 +10483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '47' x-powered-by: - ASP.NET status: @@ -11179,24 +10504,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/268a8f6b-cbab-48a8-a9f0-62ac62998266?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"268a8f6b-cbab-48a8-a9f0-62ac62998266","name":"268a8f6b-cbab-48a8-a9f0-62ac62998266","status":"Succeeded","startTime":"2021-07-13T08:05:35.1582101Z","endTime":"2021-07-13T08:05:35.1582101Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4c792000-1db1-4add-ad37-2fa8371b5528"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:21 GMT + - Tue, 13 Jul 2021 08:07:28 GMT expires: - '-1' pragma: @@ -11212,7 +10537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '46' x-powered-by: - ASP.NET status: @@ -11233,30 +10558,32 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4c792000-1db1-4add-ad37-2fa8371b5528?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4c792000-1db1-4add-ad37-2fa8371b5528","name":"4c792000-1db1-4add-ad37-2fa8371b5528","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M53.1125198S","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-07-13T08:05:35.1582101Z","endTime":"2021-07-13T08:07:28.2707299Z","activityId":"1848905c-e3b1-11eb-8e12-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '973' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:22 GMT + - Tue, 13 Jul 2021 08:07: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: @@ -11266,7 +10593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -11280,31 +10607,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","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-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":"1342627905","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1984' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:24 GMT + - Tue, 13 Jul 2021 08:07:29 GMT expires: - '-1' pragma: @@ -11320,7 +10646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -11341,24 +10667,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","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-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":"1342627905","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1984' content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:25 GMT + - Tue, 13 Jul 2021 08:07:29 GMT expires: - '-1' pragma: @@ -11374,7 +10700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -11391,49 +10717,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-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-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","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/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:44:26 GMT + - Tue, 13 Jul 2021 08:07:30 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -11449,15 +10773,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11466,7 +10790,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:27 GMT + - Tue, 13 Jul 2021 08:07:31 GMT expires: - '-1' pragma: @@ -11482,7 +10806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '122' x-powered-by: - ASP.NET status: @@ -11503,15 +10827,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11520,7 +10844,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:28 GMT + - Tue, 13 Jul 2021 08:07:32 GMT expires: - '-1' pragma: @@ -11536,7 +10860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '121' x-powered-by: - ASP.NET status: @@ -11557,15 +10881,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11574,7 +10898,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:30 GMT + - Tue, 13 Jul 2021 08:07:33 GMT expires: - '-1' pragma: @@ -11590,7 +10914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '120' x-powered-by: - ASP.NET status: @@ -11611,15 +10935,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11628,7 +10952,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:31 GMT + - Tue, 13 Jul 2021 08:07:34 GMT expires: - '-1' pragma: @@ -11644,7 +10968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '119' x-powered-by: - ASP.NET status: @@ -11665,15 +10989,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11682,7 +11006,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:32 GMT + - Tue, 13 Jul 2021 08:07:36 GMT expires: - '-1' pragma: @@ -11698,7 +11022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '118' x-powered-by: - ASP.NET status: @@ -11719,15 +11043,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11736,7 +11060,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:33 GMT + - Tue, 13 Jul 2021 08:07:37 GMT expires: - '-1' pragma: @@ -11752,7 +11076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '117' x-powered-by: - ASP.NET status: @@ -11773,15 +11097,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11790,7 +11114,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:35 GMT + - Tue, 13 Jul 2021 08:07:38 GMT expires: - '-1' pragma: @@ -11806,7 +11130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '116' x-powered-by: - ASP.NET status: @@ -11827,15 +11151,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11844,7 +11168,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:36 GMT + - Tue, 13 Jul 2021 08:07:39 GMT expires: - '-1' pragma: @@ -11860,7 +11184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '115' x-powered-by: - ASP.NET status: @@ -11881,15 +11205,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11898,7 +11222,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:37 GMT + - Tue, 13 Jul 2021 08:07:40 GMT expires: - '-1' pragma: @@ -11914,7 +11238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '114' x-powered-by: - ASP.NET status: @@ -11935,15 +11259,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11952,7 +11276,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:38 GMT + - Tue, 13 Jul 2021 08:07:42 GMT expires: - '-1' pragma: @@ -11968,7 +11292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '113' x-powered-by: - ASP.NET status: @@ -11989,15 +11313,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12006,7 +11330,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:39 GMT + - Tue, 13 Jul 2021 08:07:43 GMT expires: - '-1' pragma: @@ -12022,7 +11346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '112' x-powered-by: - ASP.NET status: @@ -12043,15 +11367,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12060,7 +11384,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:41 GMT + - Tue, 13 Jul 2021 08:07:44 GMT expires: - '-1' pragma: @@ -12076,7 +11400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '111' x-powered-by: - ASP.NET status: @@ -12097,15 +11421,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12114,7 +11438,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:42 GMT + - Tue, 13 Jul 2021 08:07:45 GMT expires: - '-1' pragma: @@ -12130,7 +11454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '110' x-powered-by: - ASP.NET status: @@ -12151,15 +11475,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12168,7 +11492,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:43 GMT + - Tue, 13 Jul 2021 08:07:47 GMT expires: - '-1' pragma: @@ -12184,7 +11508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '109' x-powered-by: - ASP.NET status: @@ -12205,15 +11529,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12222,7 +11546,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:44 GMT + - Tue, 13 Jul 2021 08:07:48 GMT expires: - '-1' pragma: @@ -12238,7 +11562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '108' x-powered-by: - ASP.NET status: @@ -12259,15 +11583,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12276,7 +11600,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:46 GMT + - Tue, 13 Jul 2021 08:07:49 GMT expires: - '-1' pragma: @@ -12292,7 +11616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '107' x-powered-by: - ASP.NET status: @@ -12313,15 +11637,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12330,7 +11654,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:47 GMT + - Tue, 13 Jul 2021 08:07:50 GMT expires: - '-1' pragma: @@ -12346,7 +11670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '106' x-powered-by: - ASP.NET status: @@ -12367,15 +11691,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12384,7 +11708,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:48 GMT + - Tue, 13 Jul 2021 08:07:51 GMT expires: - '-1' pragma: @@ -12400,7 +11724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '105' x-powered-by: - ASP.NET status: @@ -12421,15 +11745,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12438,7 +11762,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:50 GMT + - Tue, 13 Jul 2021 08:07:53 GMT expires: - '-1' pragma: @@ -12454,7 +11778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '104' x-powered-by: - ASP.NET status: @@ -12475,15 +11799,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12492,7 +11816,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:51 GMT + - Tue, 13 Jul 2021 08:07:54 GMT expires: - '-1' pragma: @@ -12508,7 +11832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '103' x-powered-by: - ASP.NET status: @@ -12529,15 +11853,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12546,7 +11870,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:52 GMT + - Tue, 13 Jul 2021 08:07:55 GMT expires: - '-1' pragma: @@ -12562,7 +11886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '102' x-powered-by: - ASP.NET status: @@ -12583,15 +11907,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12600,7 +11924,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:53 GMT + - Tue, 13 Jul 2021 08:07:56 GMT expires: - '-1' pragma: @@ -12616,7 +11940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '101' x-powered-by: - ASP.NET status: @@ -12637,15 +11961,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12654,7 +11978,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:55 GMT + - Tue, 13 Jul 2021 08:07:57 GMT expires: - '-1' pragma: @@ -12670,7 +11994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '100' x-powered-by: - ASP.NET status: @@ -12691,15 +12015,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12708,7 +12032,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:56 GMT + - Tue, 13 Jul 2021 08:07:59 GMT expires: - '-1' pragma: @@ -12724,7 +12048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '99' x-powered-by: - ASP.NET status: @@ -12745,15 +12069,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12762,7 +12086,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:57 GMT + - Tue, 13 Jul 2021 08:08:00 GMT expires: - '-1' pragma: @@ -12778,7 +12102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '98' x-powered-by: - ASP.NET status: @@ -12799,15 +12123,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12816,7 +12140,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:44:58 GMT + - Tue, 13 Jul 2021 08:08:01 GMT expires: - '-1' pragma: @@ -12832,7 +12156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '97' x-powered-by: - ASP.NET status: @@ -12853,15 +12177,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12870,7 +12194,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:00 GMT + - Tue, 13 Jul 2021 08:08:02 GMT expires: - '-1' pragma: @@ -12886,7 +12210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '96' x-powered-by: - ASP.NET status: @@ -12907,15 +12231,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12924,7 +12248,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:01 GMT + - Tue, 13 Jul 2021 08:08:03 GMT expires: - '-1' pragma: @@ -12940,7 +12264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '95' x-powered-by: - ASP.NET status: @@ -12961,15 +12285,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12978,7 +12302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:02 GMT + - Tue, 13 Jul 2021 08:08:05 GMT expires: - '-1' pragma: @@ -12994,7 +12318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '94' x-powered-by: - ASP.NET status: @@ -13015,15 +12339,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13032,7 +12356,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:03 GMT + - Tue, 13 Jul 2021 08:08:06 GMT expires: - '-1' pragma: @@ -13048,7 +12372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '93' x-powered-by: - ASP.NET status: @@ -13069,15 +12393,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13086,7 +12410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:05 GMT + - Tue, 13 Jul 2021 08:08:07 GMT expires: - '-1' pragma: @@ -13102,7 +12426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '92' x-powered-by: - ASP.NET status: @@ -13123,15 +12447,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13140,7 +12464,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:06 GMT + - Tue, 13 Jul 2021 08:08:08 GMT expires: - '-1' pragma: @@ -13156,7 +12480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '91' x-powered-by: - ASP.NET status: @@ -13177,15 +12501,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13194,7 +12518,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:07 GMT + - Tue, 13 Jul 2021 08:08:10 GMT expires: - '-1' pragma: @@ -13210,7 +12534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '90' x-powered-by: - ASP.NET status: @@ -13231,15 +12555,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13248,7 +12572,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:08 GMT + - Tue, 13 Jul 2021 08:08:11 GMT expires: - '-1' pragma: @@ -13264,7 +12588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '89' x-powered-by: - ASP.NET status: @@ -13285,15 +12609,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13302,7 +12626,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:09 GMT + - Tue, 13 Jul 2021 08:08:12 GMT expires: - '-1' pragma: @@ -13318,7 +12642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '88' x-powered-by: - ASP.NET status: @@ -13339,15 +12663,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13356,7 +12680,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:11 GMT + - Tue, 13 Jul 2021 08:08:13 GMT expires: - '-1' pragma: @@ -13372,7 +12696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '87' x-powered-by: - ASP.NET status: @@ -13393,15 +12717,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13410,7 +12734,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:12 GMT + - Tue, 13 Jul 2021 08:08:14 GMT expires: - '-1' pragma: @@ -13426,7 +12750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '86' x-powered-by: - ASP.NET status: @@ -13447,15 +12771,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13464,7 +12788,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:14 GMT + - Tue, 13 Jul 2021 08:08:16 GMT expires: - '-1' pragma: @@ -13480,7 +12804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '85' x-powered-by: - ASP.NET status: @@ -13501,15 +12825,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13518,7 +12842,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:15 GMT + - Tue, 13 Jul 2021 08:08:17 GMT expires: - '-1' pragma: @@ -13534,7 +12858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '84' x-powered-by: - ASP.NET status: @@ -13555,15 +12879,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13572,7 +12896,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:16 GMT + - Tue, 13 Jul 2021 08:08:18 GMT expires: - '-1' pragma: @@ -13588,7 +12912,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '83' x-powered-by: - ASP.NET status: @@ -13609,15 +12933,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13626,7 +12950,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:18 GMT + - Tue, 13 Jul 2021 08:08:19 GMT expires: - '-1' pragma: @@ -13642,7 +12966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '82' x-powered-by: - ASP.NET status: @@ -13663,15 +12987,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13680,7 +13004,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:19 GMT + - Tue, 13 Jul 2021 08:08:21 GMT expires: - '-1' pragma: @@ -13696,7 +13020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '81' x-powered-by: - ASP.NET status: @@ -13717,15 +13041,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13734,7 +13058,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:20 GMT + - Tue, 13 Jul 2021 08:08:22 GMT expires: - '-1' pragma: @@ -13750,7 +13074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '80' x-powered-by: - ASP.NET status: @@ -13771,15 +13095,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13788,7 +13112,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:21 GMT + - Tue, 13 Jul 2021 08:08:23 GMT expires: - '-1' pragma: @@ -13804,7 +13128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '79' x-powered-by: - ASP.NET status: @@ -13825,15 +13149,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13842,7 +13166,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:22 GMT + - Tue, 13 Jul 2021 08:08:24 GMT expires: - '-1' pragma: @@ -13858,7 +13182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '78' x-powered-by: - ASP.NET status: @@ -13879,15 +13203,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13896,7 +13220,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:24 GMT + - Tue, 13 Jul 2021 08:08:25 GMT expires: - '-1' pragma: @@ -13912,7 +13236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '77' x-powered-by: - ASP.NET status: @@ -13933,15 +13257,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13950,7 +13274,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:25 GMT + - Tue, 13 Jul 2021 08:08:27 GMT expires: - '-1' pragma: @@ -13966,7 +13290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '76' x-powered-by: - ASP.NET status: @@ -13987,15 +13311,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14004,7 +13328,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:26 GMT + - Tue, 13 Jul 2021 08:08:28 GMT expires: - '-1' pragma: @@ -14020,7 +13344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '75' x-powered-by: - ASP.NET status: @@ -14041,15 +13365,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14058,7 +13382,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:27 GMT + - Tue, 13 Jul 2021 08:08:29 GMT expires: - '-1' pragma: @@ -14074,7 +13398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '74' x-powered-by: - ASP.NET status: @@ -14095,15 +13419,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14112,7 +13436,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:28 GMT + - Tue, 13 Jul 2021 08:08:30 GMT expires: - '-1' pragma: @@ -14128,7 +13452,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '73' x-powered-by: - ASP.NET status: @@ -14149,15 +13473,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14166,7 +13490,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:30 GMT + - Tue, 13 Jul 2021 08:08:32 GMT expires: - '-1' pragma: @@ -14182,7 +13506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '72' x-powered-by: - ASP.NET status: @@ -14203,15 +13527,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14220,7 +13544,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:31 GMT + - Tue, 13 Jul 2021 08:08:33 GMT expires: - '-1' pragma: @@ -14236,7 +13560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '71' x-powered-by: - ASP.NET status: @@ -14257,15 +13581,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14274,7 +13598,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:32 GMT + - Tue, 13 Jul 2021 08:08:34 GMT expires: - '-1' pragma: @@ -14290,7 +13614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '70' x-powered-by: - ASP.NET status: @@ -14311,15 +13635,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14328,7 +13652,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:33 GMT + - Tue, 13 Jul 2021 08:08:35 GMT expires: - '-1' pragma: @@ -14344,7 +13668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '69' x-powered-by: - ASP.NET status: @@ -14365,15 +13689,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14382,7 +13706,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:35 GMT + - Tue, 13 Jul 2021 08:08:37 GMT expires: - '-1' pragma: @@ -14398,7 +13722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '68' x-powered-by: - ASP.NET status: @@ -14419,15 +13743,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14436,7 +13760,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:36 GMT + - Tue, 13 Jul 2021 08:08:38 GMT expires: - '-1' pragma: @@ -14452,7 +13776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '67' x-powered-by: - ASP.NET status: @@ -14473,15 +13797,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14490,7 +13814,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:37 GMT + - Tue, 13 Jul 2021 08:08:39 GMT expires: - '-1' pragma: @@ -14506,7 +13830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '66' x-powered-by: - ASP.NET status: @@ -14527,15 +13851,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14544,7 +13868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:38 GMT + - Tue, 13 Jul 2021 08:08:40 GMT expires: - '-1' pragma: @@ -14560,7 +13884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '65' x-powered-by: - ASP.NET status: @@ -14581,15 +13905,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14598,7 +13922,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:40 GMT + - Tue, 13 Jul 2021 08:08:42 GMT expires: - '-1' pragma: @@ -14614,7 +13938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '64' x-powered-by: - ASP.NET status: @@ -14635,15 +13959,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14652,7 +13976,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:41 GMT + - Tue, 13 Jul 2021 08:08:43 GMT expires: - '-1' pragma: @@ -14668,7 +13992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '63' x-powered-by: - ASP.NET status: @@ -14689,15 +14013,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14706,7 +14030,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:42 GMT + - Tue, 13 Jul 2021 08:08:44 GMT expires: - '-1' pragma: @@ -14722,7 +14046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '62' x-powered-by: - ASP.NET status: @@ -14743,15 +14067,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14760,7 +14084,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:43 GMT + - Tue, 13 Jul 2021 08:08:45 GMT expires: - '-1' pragma: @@ -14776,7 +14100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '61' x-powered-by: - ASP.NET status: @@ -14797,15 +14121,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14814,7 +14138,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:45 GMT + - Tue, 13 Jul 2021 08:08:46 GMT expires: - '-1' pragma: @@ -14830,7 +14154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '60' x-powered-by: - ASP.NET status: @@ -14851,15 +14175,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14868,7 +14192,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:46 GMT + - Tue, 13 Jul 2021 08:08:48 GMT expires: - '-1' pragma: @@ -14884,7 +14208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '59' x-powered-by: - ASP.NET status: @@ -14905,15 +14229,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14922,7 +14246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:47 GMT + - Tue, 13 Jul 2021 08:08:49 GMT expires: - '-1' pragma: @@ -14938,7 +14262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '58' x-powered-by: - ASP.NET status: @@ -14959,15 +14283,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14976,7 +14300,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:48 GMT + - Tue, 13 Jul 2021 08:08:51 GMT expires: - '-1' pragma: @@ -14992,7 +14316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '57' x-powered-by: - ASP.NET status: @@ -15013,15 +14337,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15030,7 +14354,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:49 GMT + - Tue, 13 Jul 2021 08:08:52 GMT expires: - '-1' pragma: @@ -15046,7 +14370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '56' x-powered-by: - ASP.NET status: @@ -15067,15 +14391,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15084,7 +14408,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:51 GMT + - Tue, 13 Jul 2021 08:08:54 GMT expires: - '-1' pragma: @@ -15100,7 +14424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '55' x-powered-by: - ASP.NET status: @@ -15121,15 +14445,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15138,7 +14462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:52 GMT + - Tue, 13 Jul 2021 08:08:55 GMT expires: - '-1' pragma: @@ -15154,7 +14478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '54' x-powered-by: - ASP.NET status: @@ -15175,15 +14499,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15192,7 +14516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:53 GMT + - Tue, 13 Jul 2021 08:08:56 GMT expires: - '-1' pragma: @@ -15208,7 +14532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '53' x-powered-by: - ASP.NET status: @@ -15229,15 +14553,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15246,7 +14570,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:54 GMT + - Tue, 13 Jul 2021 08:08:57 GMT expires: - '-1' pragma: @@ -15262,7 +14586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '52' x-powered-by: - ASP.NET status: @@ -15283,15 +14607,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15300,7 +14624,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:56 GMT + - Tue, 13 Jul 2021 08:08:59 GMT expires: - '-1' pragma: @@ -15316,7 +14640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '51' x-powered-by: - ASP.NET status: @@ -15337,15 +14661,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15354,7 +14678,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:57 GMT + - Tue, 13 Jul 2021 08:09:00 GMT expires: - '-1' pragma: @@ -15370,7 +14694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '50' x-powered-by: - ASP.NET status: @@ -15391,15 +14715,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15408,7 +14732,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:58 GMT + - Tue, 13 Jul 2021 08:09:01 GMT expires: - '-1' pragma: @@ -15424,7 +14748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '49' x-powered-by: - ASP.NET status: @@ -15445,15 +14769,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15462,7 +14786,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:45:59 GMT + - Tue, 13 Jul 2021 08:09:03 GMT expires: - '-1' pragma: @@ -15478,7 +14802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '48' x-powered-by: - ASP.NET status: @@ -15499,15 +14823,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15516,7 +14840,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:01 GMT + - Tue, 13 Jul 2021 08:09:04 GMT expires: - '-1' pragma: @@ -15532,7 +14856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '47' x-powered-by: - ASP.NET status: @@ -15553,15 +14877,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15570,7 +14894,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:02 GMT + - Tue, 13 Jul 2021 08:09:05 GMT expires: - '-1' pragma: @@ -15586,7 +14910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '46' x-powered-by: - ASP.NET status: @@ -15607,15 +14931,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15624,7 +14948,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:03 GMT + - Tue, 13 Jul 2021 08:09:06 GMT expires: - '-1' pragma: @@ -15640,7 +14964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '45' x-powered-by: - ASP.NET status: @@ -15661,15 +14985,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15678,7 +15002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:04 GMT + - Tue, 13 Jul 2021 08:09:08 GMT expires: - '-1' pragma: @@ -15694,7 +15018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '44' x-powered-by: - ASP.NET status: @@ -15715,15 +15039,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15732,7 +15056,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:05 GMT + - Tue, 13 Jul 2021 08:09:09 GMT expires: - '-1' pragma: @@ -15748,7 +15072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '43' x-powered-by: - ASP.NET status: @@ -15769,15 +15093,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15786,7 +15110,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:07 GMT + - Tue, 13 Jul 2021 08:09:10 GMT expires: - '-1' pragma: @@ -15802,7 +15126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '42' x-powered-by: - ASP.NET status: @@ -15823,15 +15147,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15840,7 +15164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:08 GMT + - Tue, 13 Jul 2021 08:09:11 GMT expires: - '-1' pragma: @@ -15856,7 +15180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '41' x-powered-by: - ASP.NET status: @@ -15877,15 +15201,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15894,7 +15218,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:09 GMT + - Tue, 13 Jul 2021 08:09:12 GMT expires: - '-1' pragma: @@ -15910,7 +15234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '40' x-powered-by: - ASP.NET status: @@ -15931,15 +15255,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"InProgress","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"InProgress","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15948,7 +15272,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:10 GMT + - Tue, 13 Jul 2021 08:09:14 GMT expires: - '-1' pragma: @@ -15964,7 +15288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '39' x-powered-by: - ASP.NET status: @@ -15985,15 +15309,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1977267f-78dc-491f-a11c-c1712942b045?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b?api-version=2021-01-01 response: body: - string: '{"id":"1977267f-78dc-491f-a11c-c1712942b045","name":"1977267f-78dc-491f-a11c-c1712942b045","status":"Succeeded","startTime":"2021-06-21T11:44:20.0515874Z","endTime":"2021-06-21T11:44:20.0515874Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e6495c4b-a343-4d7c-9a2c-c1142bd83e95"}}' + string: '{"id":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","name":"ceb4c0d1-96b0-4c35-97c4-1a98c6133c8b","status":"Succeeded","startTime":"2021-07-13T08:07:30.9324813Z","endTime":"2021-07-13T08:07:30.9324813Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"40452538-9aa5-4e4c-a1bb-2331d01a7d52"}}' headers: cache-control: - no-cache @@ -16002,7 +15326,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:12 GMT + - Tue, 13 Jul 2021 08:09:44 GMT expires: - '-1' pragma: @@ -16018,7 +15342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '38' x-powered-by: - ASP.NET status: @@ -16039,16 +15363,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e6495c4b-a343-4d7c-9a2c-c1142bd83e95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/40452538-9aa5-4e4c-a1bb-2331d01a7d52?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e6495c4b-a343-4d7c-9a2c-c1142bd83e95","name":"e6495c4b-a343-4d7c-9a2c-c1142bd83e95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.5677144S","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-06-21T11:44:20.0515874Z","endTime":"2021-06-21T11:46:11.6193018Z","activityId":"0331cffc-d286-11eb-a3e7-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/40452538-9aa5-4e4c-a1bb-2331d01a7d52","name":"40452538-9aa5-4e4c-a1bb-2331d01a7d52","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M51.9909226S","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-07-13T08:07:30.9324813Z","endTime":"2021-07-13T08:09:22.9234039Z","activityId":"5d2e6c24-e3b1-11eb-be44-00155ddc6812"}}' headers: cache-control: - no-cache @@ -16057,7 +15381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:13 GMT + - Tue, 13 Jul 2021 08:09:45 GMT expires: - '-1' pragma: @@ -16074,7 +15398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -16084,7 +15408,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -16096,9 +15420,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -16108,7 +15432,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:46:15 GMT + - Tue, 13 Jul 2021 08:09:47 GMT expires: - '-1' pragma: 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 d97919dc44e..231abbce5de 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A46%3A21.9398445Z''\"","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-07-13T14%3A50%3A31.4419949Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:22 GMT + - Tue, 13 Jul 2021 14:50:31 GMT expires: - '-1' pragma: @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:22 GMT + - Tue, 13 Jul 2021 14:50:31 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:46:22 GMT + - Tue, 13 Jul 2021 14:50:32 GMT expires: - '-1' pragma: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T11:46:17Z"},"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-07-13T14:50:23Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:46:23 GMT + - Tue, 13 Jul 2021 14:50:33 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 11:46:23 GMT + - Tue, 13 Jul 2021 14:50:33 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 11:51:23 GMT + - Tue, 13 Jul 2021 14:55:33 GMT source-age: - - '171' + - '123' strict-transport-security: - max-age=31536000 vary: @@ -281,19 +282,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '3' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 13aea984de6aed3e961fed6f8993ae84c96fb4bc + - a807736aedf6bd41211e3355a55983227f7d1802 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1264-QPG + - cache-qpg1255-QPG x-timer: - - S1624275984.874396,VS0,VE0 + - S1626187834.971093,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:46:23 GMT + - Tue, 13 Jul 2021 14:50:33 GMT expires: - '-1' pragma: @@ -395,15 +396,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_TxSLbWipEaCSoDuvN7uwKtMt4aBegame","name":"vm_deploy_TxSLbWipEaCSoDuvN7uwKtMt4aBegame","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6458358414371026327","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T11:46:25.5724746Z","duration":"PT0.9300816S","correlationId":"8e42be9b-fef7-4a65-bede-1e22565a1f3a","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_2O35n3sCZzkO34BjrF4cVJrxcIvSapX9","name":"vm_deploy_2O35n3sCZzkO34BjrF4cVJrxcIvSapX9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3411840018219481021","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T14:50:36.8213802Z","duration":"PT1.2704009S","correlationId":"9c1db9ae-8c12-46d7-af84-06d8bacd58dc","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_TxSLbWipEaCSoDuvN7uwKtMt4aBegame/operationStatuses/08585773309008352346?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_2O35n3sCZzkO34BjrF4cVJrxcIvSapX9/operationStatuses/08585754190499266589?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -411,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:46:25 GMT + - Tue, 13 Jul 2021 14:50:36 GMT expires: - '-1' pragma: @@ -439,9 +440,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773309008352346?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/08585754190499266589?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:46:55 GMT + - Tue, 13 Jul 2021 14:51:06 GMT expires: - '-1' pragma: @@ -481,9 +482,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773309008352346?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/08585754190499266589?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:25 GMT + - Tue, 13 Jul 2021 14:51:36 GMT expires: - '-1' pragma: @@ -523,12 +524,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_TxSLbWipEaCSoDuvN7uwKtMt4aBegame","name":"vm_deploy_TxSLbWipEaCSoDuvN7uwKtMt4aBegame","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6458358414371026327","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T11:47:14.3231491Z","duration":"PT49.6807561S","correlationId":"8e42be9b-fef7-4a65-bede-1e22565a1f3a","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_2O35n3sCZzkO34BjrF4cVJrxcIvSapX9","name":"vm_deploy_2O35n3sCZzkO34BjrF4cVJrxcIvSapX9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3411840018219481021","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T14:51:14.6302929Z","duration":"PT39.0793136S","correlationId":"9c1db9ae-8c12-46d7-af84-06d8bacd58dc","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 @@ -537,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:25 GMT + - Tue, 13 Jul 2021 14:51:36 GMT expires: - '-1' pragma: @@ -565,7 +566,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -574,16 +575,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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\": @@ -597,16 +598,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\": \"2021-06-21T11:47:26+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T14:51:38+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n \"statuses\": + \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T11:46:44.5804101+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:50:48.5421956+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T11:47:10.7990888+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:51:11.9484081+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}" @@ -618,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:26 GMT + - Tue, 13 Jul 2021 14:51:37 GMT expires: - '-1' pragma: @@ -635,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31974 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31952 status: code: 200 message: OK @@ -653,20 +654,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"16be099a-25d7-4981-bb67-92d5478da06f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f938a546-e979-4cd5-bba3-5016dc0b0b23\\\"\",\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\": \"eb554c04-08e5-43af-9c00-c12d5b475c29\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"06a4ed50-2f44-48c6-b490-ea3913f0dffc\",\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/\\\"16be099a-25d7-4981-bb67-92d5478da06f\\\"\",\r\n + \ \"etag\": \"W/\\\"f938a546-e979-4cd5-bba3-5016dc0b0b23\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +676,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\": - \"23h3vo0rzq4udfnpvvfmtevrhc.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C9-19-0D\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"psoxmh50n0wepmfikealkksolg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C8-7A-79\",\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\": @@ -690,9 +691,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:27 GMT + - Tue, 13 Jul 2021 14:51:37 GMT etag: - - W/"16be099a-25d7-4981-bb67-92d5478da06f" + - W/"f938a546-e979-4cd5-bba3-5016dc0b0b23" expires: - '-1' pragma: @@ -709,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d175aa08-b9bd-4631-9bc0-f6ad5e7efcf0 + - 81efb348-01d2-4f8e-ba90-4bda502953cd status: code: 200 message: OK @@ -727,19 +728,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"7b02a356-76a3-4a9a-9b0c-e0133855efcd\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4db29cbe-1159-456f-8a0c-2933fcd7f3f3\\\"\",\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\": \"f618c03d-01c0-4441-b42d-a666b3f81e22\",\r\n - \ \"ipAddress\": \"52.187.170.179\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"3701d689-896e-4c63-bc27-7b520ef03a51\",\r\n + \ \"ipAddress\": \"168.63.240.40\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic/ipConfigurations/ipconfigclitest-vm000003\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -747,13 +748,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:27 GMT + - Tue, 13 Jul 2021 14:51:37 GMT etag: - - W/"7b02a356-76a3-4a9a-9b0c-e0133855efcd" + - W/"4db29cbe-1159-456f-8a0c-2933fcd7f3f3" expires: - '-1' pragma: @@ -770,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b026ac9-6e19-408d-920f-8e4ba7632264 + - 1f0c98a8-17ac-4733-ad1c-b11e6544bd97 status: code: 200 message: OK @@ -788,8 +789,8 @@ interactions: ParameterSetName: - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -805,7 +806,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:47:54 GMT + - Tue, 13 Jul 2021 14:52:05 GMT expires: - '-1' pragma: @@ -846,8 +847,8 @@ interactions: ParameterSetName: - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -863,7 +864,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:47:54 GMT + - Tue, 13 Jul 2021 14:52:05 GMT expires: - '-1' pragma: @@ -879,7 +880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -899,7 +900,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -908,16 +909,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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\": @@ -935,7 +936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:54 GMT + - Tue, 13 Jul 2021 14:52:06 GMT expires: - '-1' pragma: @@ -952,7 +953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31971 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31951 status: code: 200 message: OK @@ -960,9 +961,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_38db8541008a4eb2b8369b76a630fe70", + {"osType": "Windows", "name": "clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f", "storageAccountType": "Premium_LRS"}}, "dataDisks": [{"lun": 0, "name": "mydisk1", "createOption": "Empty", "diskSizeGB": 10, "managedDisk": {}}]}, "osProfile": {"computerName": "clitest-vm000003", "adminUsername": "clitest-vm000003", "windowsConfiguration": @@ -986,7 +987,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -995,16 +996,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1023,7 +1024,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/35127b7c-b437-4cd9-a961-7c7b2af91d7a?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/9c3c4a39-327c-4036-819d-e9b5f584fa5b?api-version=2021-03-01 cache-control: - no-cache content-length: @@ -1031,7 +1032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:47:56 GMT + - Tue, 13 Jul 2021 14:52:07 GMT expires: - '-1' pragma: @@ -1048,9 +1049,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196 + - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -1068,14 +1069,14 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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/35127b7c-b437-4cd9-a961-7c7b2af91d7a?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/9c3c4a39-327c-4036-819d-e9b5f584fa5b?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-06-21T11:47:56.7366753+00:00\",\r\n \"endTime\": - \"2021-06-21T11:48:02.7210739+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"35127b7c-b437-4cd9-a961-7c7b2af91d7a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-07-13T14:52:07.3077511+00:00\",\r\n \"endTime\": + \"2021-07-13T14:52:14.8077598+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9c3c4a39-327c-4036-819d-e9b5f584fa5b\"\r\n}" headers: cache-control: - no-cache @@ -1084,7 +1085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:48:27 GMT + - Tue, 13 Jul 2021 14:52:37 GMT expires: - '-1' pragma: @@ -1101,7 +1102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29987 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -1119,7 +1120,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1128,16 +1129,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1161,7 +1162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:48:27 GMT + - Tue, 13 Jul 2021 14:52:37 GMT expires: - '-1' pragma: @@ -1178,7 +1179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31967 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31948 status: code: 200 message: OK @@ -1196,7 +1197,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1205,16 +1206,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1238,7 +1239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:48:28 GMT + - Tue, 13 Jul 2021 14:52:38 GMT expires: - '-1' pragma: @@ -1255,7 +1256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31966 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31947 status: code: 200 message: OK @@ -1263,9 +1264,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_38db8541008a4eb2b8369b76a630fe70", + {"osType": "Windows", "name": "clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f", "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", @@ -1292,7 +1293,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1301,16 +1302,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1334,7 +1335,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/1e2e63c9-9336-4be1-99a7-f19f62bd2741?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/411e2539-0d38-47f7-babc-47e3f822c041?api-version=2021-03-01 cache-control: - no-cache content-length: @@ -1342,7 +1343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:48:30 GMT + - Tue, 13 Jul 2021 14:52:40 GMT expires: - '-1' pragma: @@ -1359,7 +1360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1195 + - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1379,14 +1380,14 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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/1e2e63c9-9336-4be1-99a7-f19f62bd2741?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/411e2539-0d38-47f7-babc-47e3f822c041?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-06-21T11:48:29.6116882+00:00\",\r\n \"endTime\": - \"2021-06-21T11:48:35.3148422+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1e2e63c9-9336-4be1-99a7-f19f62bd2741\"\r\n}" + string: "{\r\n \"startTime\": \"2021-07-13T14:52:40.4170718+00:00\",\r\n \"endTime\": + \"2021-07-13T14:52:51.3233664+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"411e2539-0d38-47f7-babc-47e3f822c041\"\r\n}" headers: cache-control: - no-cache @@ -1395,7 +1396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:48:59 GMT + - Tue, 13 Jul 2021 14:53:10 GMT expires: - '-1' pragma: @@ -1412,7 +1413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29985 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992 status: code: 200 message: OK @@ -1430,7 +1431,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1439,16 +1440,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1477,7 +1478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:49:00 GMT + - Tue, 13 Jul 2021 14:53:10 GMT expires: - '-1' pragma: @@ -1494,7 +1495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31962 + - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31944 status: code: 200 message: OK @@ -1512,7 +1513,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1521,16 +1522,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1559,7 +1560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:49:00 GMT + - Tue, 13 Jul 2021 14:53:11 GMT expires: - '-1' pragma: @@ -1576,7 +1577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31961 + - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31943 status: code: 200 message: OK @@ -1584,9 +1585,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_38db8541008a4eb2b8369b76a630fe70", + {"osType": "Windows", "name": "clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f", "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", @@ -1616,7 +1617,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1625,16 +1626,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1663,7 +1664,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/b345a72b-14c3-4fe0-955b-a1b9e2eb5b4a?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/4062afaf-776b-415f-bbcb-c1fd0539faf3?api-version=2021-03-01 cache-control: - no-cache content-length: @@ -1671,7 +1672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:49:03 GMT + - Tue, 13 Jul 2021 14:53:13 GMT expires: - '-1' pragma: @@ -1688,9 +1689,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1194 + - Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -1708,23 +1709,23 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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/b345a72b-14c3-4fe0-955b-a1b9e2eb5b4a?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/4062afaf-776b-415f-bbcb-c1fd0539faf3?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-06-21T11:49:02.6429419+00:00\",\r\n \"endTime\": - \"2021-06-21T11:49:08.799201+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b345a72b-14c3-4fe0-955b-a1b9e2eb5b4a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-07-13T14:53:12.5108145+00:00\",\r\n \"endTime\": + \"2021-07-13T14:53:20.6983414+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4062afaf-776b-415f-bbcb-c1fd0539faf3\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:49:33 GMT + - Tue, 13 Jul 2021 14:53:43 GMT expires: - '-1' pragma: @@ -1741,7 +1742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29983 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 status: code: 200 message: OK @@ -1759,7 +1760,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1768,16 +1769,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1811,7 +1812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:49:33 GMT + - Tue, 13 Jul 2021 14:53:43 GMT expires: - '-1' pragma: @@ -1828,7 +1829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31957 + - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31940 status: code: 200 message: OK @@ -1846,7 +1847,7 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1855,16 +1856,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\": \"22682f29-ab7b-45e8-b279-be1e0d54b8dd\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a867126f-0121-4f12-b97f-31400ea29c4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\",\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_38db8541008a4eb2b8369b76a630fe70\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f\"\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 @@ -1898,7 +1899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 11:49:33 GMT + - Tue, 13 Jul 2021 14:53:43 GMT expires: - '-1' pragma: @@ -1915,7 +1916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31956 + - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31939 status: code: 200 message: OK @@ -1933,12 +1934,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A46%3A21.9398445Z''\"","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-07-13T14%3A50%3A31.4419949Z''\"","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 @@ -1947,7 +1948,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:49:34 GMT + - Tue, 13 Jul 2021 14:53:44 GMT expires: - '-1' pragma: @@ -1979,15 +1980,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T21: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-07-14T00:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T00:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1996,7 +1997,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:49:35 GMT + - Tue, 13 Jul 2021 14:53:44 GMT expires: - '-1' pragma: @@ -2012,7 +2013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -2032,24 +2033,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk;clitest-vmr237c/protectableItems/vm;iaasvmcontainerv2;clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk;clitest-vmr237c","name":"iaasvmcontainerv2;clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk;clitest-vmr237c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk/providers/Microsoft.Compute/virtualMachines/clitest-vmr237c","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmr237c","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk;clitest-vmtftna/protectableItems/vm;iaasvmcontainerv2;clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk;clitest-vmtftna","name":"iaasvmcontainerv2;clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk;clitest-vmtftna","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk/providers/Microsoft.Compute/virtualMachines/clitest-vmtftna","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgpwfkhrrm3pitvfjx7had4fnkav6f5viajaa67akuwdjqs6xbn656epux2r4atchbk","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmtftna","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '8271' + - '3231' content-type: - application/json date: - - Mon, 21 Jun 2021 11:49:35 GMT + - Tue, 13 Jul 2021 14:53:45 GMT expires: - '-1' pragma: @@ -2087,8 +2088,8 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -2098,17 +2099,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2019-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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:36 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2136,12 +2137,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2151,11 +2152,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:37 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2183,12 +2184,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2198,11 +2199,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:38 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2230,12 +2231,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2245,11 +2246,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:39 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2277,12 +2278,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2292,11 +2293,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:41 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2324,12 +2325,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2339,11 +2340,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:42 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2371,12 +2372,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2386,11 +2387,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:43 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2418,12 +2419,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2433,11 +2434,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:44 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2465,12 +2466,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2480,11 +2481,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:46 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2512,12 +2513,12 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' @@ -2527,11 +2528,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:47 GMT + - Tue, 13 Jul 2021 14: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/operationResults/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2559,22 +2560,26 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/973bd241-27fc-46db-95e1-b08aaa908bf2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Mon, 21 Jun 2021 11:49:48 GMT + - Tue, 13 Jul 2021 14: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/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -2586,8 +2591,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -2602,50 +2607,41 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '7011' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:49 GMT + - Tue, 13 Jul 2021 14: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/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' 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", "extendedProperties": - {"diskExclusionProperties": {"diskLunList": [0, 1], "isInclusionList": true}}}}' + body: null headers: Accept: - application/json @@ -2655,43 +2651,37 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + 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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 11:49:49 GMT + - Tue, 13 Jul 2021 14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -2711,45 +2701,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:50 GMT + - Tue, 13 Jul 2021 14:54: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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2764,45 +2748,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:51 GMT + - Tue, 13 Jul 2021 14: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/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2817,45 +2795,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:53 GMT + - Tue, 13 Jul 2021 14: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/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2870,45 +2842,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:54 GMT + - Tue, 13 Jul 2021 14: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/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2923,45 +2889,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:55 GMT + - Tue, 13 Jul 2021 14:54: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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2976,45 +2936,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:57 GMT + - Tue, 13 Jul 2021 14:54: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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3029,45 +2983,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:58 GMT + - Tue, 13 Jul 2021 14:54: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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3082,45 +3030,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:49:59 GMT + - Tue, 13 Jul 2021 14:54: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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3135,45 +3077,39 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:50:00 GMT + - Tue, 13 Jul 2021 14:54: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/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '129' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3188,45 +3124,35 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f9ac29af-fb4c-4e2e-96cd-a90125fb0449?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '187' - content-type: - - application/json date: - - Mon, 21 Jun 2021 11:50:01 GMT + - Tue, 13 Jul 2021 14:54: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' + - '128' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -3241,24 +3167,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:03 GMT + - Tue, 13 Jul 2021 14:54:12 GMT expires: - '-1' pragma: @@ -3274,14 +3200,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '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.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 @@ -3291,49 +3220,49 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","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/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:50:04 GMT + - Tue, 13 Jul 2021 14:54: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK -- request: + code: 202 + message: Accepted +- request: body: null headers: Accept: @@ -3347,24 +3276,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:05 GMT + - Tue, 13 Jul 2021 14:54:14 GMT expires: - '-1' pragma: @@ -3380,7 +3309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '149' x-powered-by: - ASP.NET status: @@ -3400,24 +3329,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:06 GMT + - Tue, 13 Jul 2021 14:54:15 GMT expires: - '-1' pragma: @@ -3433,7 +3362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '148' x-powered-by: - ASP.NET status: @@ -3453,24 +3382,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:08 GMT + - Tue, 13 Jul 2021 14:54:16 GMT expires: - '-1' pragma: @@ -3486,7 +3415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '147' x-powered-by: - ASP.NET status: @@ -3506,24 +3435,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:09 GMT + - Tue, 13 Jul 2021 14:54:17 GMT expires: - '-1' pragma: @@ -3539,7 +3468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '146' x-powered-by: - ASP.NET status: @@ -3559,24 +3488,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:10 GMT + - Tue, 13 Jul 2021 14:54:19 GMT expires: - '-1' pragma: @@ -3592,7 +3521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '145' x-powered-by: - ASP.NET status: @@ -3612,24 +3541,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:11 GMT + - Tue, 13 Jul 2021 14:54:20 GMT expires: - '-1' pragma: @@ -3645,7 +3574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '144' x-powered-by: - ASP.NET status: @@ -3665,24 +3594,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:12 GMT + - Tue, 13 Jul 2021 14:54:21 GMT expires: - '-1' pragma: @@ -3698,7 +3627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '143' x-powered-by: - ASP.NET status: @@ -3718,24 +3647,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:14 GMT + - Tue, 13 Jul 2021 14:54:22 GMT expires: - '-1' pragma: @@ -3751,7 +3680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '142' x-powered-by: - ASP.NET status: @@ -3771,24 +3700,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:15 GMT + - Tue, 13 Jul 2021 14:54:23 GMT expires: - '-1' pragma: @@ -3804,7 +3733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '141' x-powered-by: - ASP.NET status: @@ -3824,24 +3753,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:16 GMT + - Tue, 13 Jul 2021 14:54:25 GMT expires: - '-1' pragma: @@ -3857,7 +3786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '140' x-powered-by: - ASP.NET status: @@ -3877,24 +3806,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:17 GMT + - Tue, 13 Jul 2021 14:54:26 GMT expires: - '-1' pragma: @@ -3910,7 +3839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '139' x-powered-by: - ASP.NET status: @@ -3930,24 +3859,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:19 GMT + - Tue, 13 Jul 2021 14:54:27 GMT expires: - '-1' pragma: @@ -3963,7 +3892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '138' x-powered-by: - ASP.NET status: @@ -3983,24 +3912,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"InProgress","startTime":"2021-06-21T11:49:50.274817Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:20 GMT + - Tue, 13 Jul 2021 14:54:28 GMT expires: - '-1' pragma: @@ -4016,7 +3945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '137' x-powered-by: - ASP.NET status: @@ -4036,24 +3965,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2bf7c11b-243b-4bf9-adaf-cfd21dc85767?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","name":"2bf7c11b-243b-4bf9-adaf-cfd21dc85767","status":"Succeeded","startTime":"2021-06-21T11:49:50.274817Z","endTime":"2021-06-21T11:49:50.274817Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d4b0b562-cef7-4108-9b59-b75ed7b51dff"}}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '302' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:21 GMT + - Tue, 13 Jul 2021 14:54:29 GMT expires: - '-1' pragma: @@ -4069,7 +3998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '136' x-powered-by: - ASP.NET status: @@ -4089,79 +4018,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d4b0b562-cef7-4108-9b59-b75ed7b51dff?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d4b0b562-cef7-4108-9b59-b75ed7b51dff","name":"d4b0b562-cef7-4108-9b59-b75ed7b51dff","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.0762113S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T11:49:50.274817Z","endTime":"2021-06-21T11:50:21.3510283Z","activityId":"bf5ec5cd-d286-11eb-a7e7-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '967' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 11:50: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 item show - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"17593300670273","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","isArchiveEnabled":false}}]}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2082' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:22 GMT + - Tue, 13 Jul 2021 14:54:31 GMT expires: - '-1' pragma: @@ -4177,7 +4051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '135' x-powered-by: - ASP.NET status: @@ -4191,30 +4065,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"17593300670273","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","isArchiveEnabled":false}}]}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2082' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:23 GMT + - Tue, 13 Jul 2021 14:54:32 GMT expires: - '-1' pragma: @@ -4230,68 +4104,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' 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}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 11:50: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/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - request: body: null headers: @@ -4300,21 +4118,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4323,7 +4141,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:25 GMT + - Tue, 13 Jul 2021 14:54:33 GMT expires: - '-1' pragma: @@ -4339,7 +4157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -4353,21 +4171,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4376,7 +4194,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:26 GMT + - Tue, 13 Jul 2021 14:54:34 GMT expires: - '-1' pragma: @@ -4392,7 +4210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '132' x-powered-by: - ASP.NET status: @@ -4406,21 +4224,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4429,7 +4247,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:27 GMT + - Tue, 13 Jul 2021 14:54:35 GMT expires: - '-1' pragma: @@ -4445,7 +4263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '131' x-powered-by: - ASP.NET status: @@ -4459,21 +4277,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4482,7 +4300,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:28 GMT + - Tue, 13 Jul 2021 14:54:37 GMT expires: - '-1' pragma: @@ -4498,7 +4316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '130' x-powered-by: - ASP.NET status: @@ -4512,21 +4330,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4535,7 +4353,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:30 GMT + - Tue, 13 Jul 2021 14:54:38 GMT expires: - '-1' pragma: @@ -4551,7 +4369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '129' x-powered-by: - ASP.NET status: @@ -4565,21 +4383,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4588,7 +4406,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:31 GMT + - Tue, 13 Jul 2021 14:54:40 GMT expires: - '-1' pragma: @@ -4604,7 +4422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '128' x-powered-by: - ASP.NET status: @@ -4618,21 +4436,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4641,7 +4459,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:32 GMT + - Tue, 13 Jul 2021 14:54:41 GMT expires: - '-1' pragma: @@ -4657,7 +4475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '127' x-powered-by: - ASP.NET status: @@ -4671,21 +4489,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4694,7 +4512,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:33 GMT + - Tue, 13 Jul 2021 14:54:42 GMT expires: - '-1' pragma: @@ -4710,7 +4528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '126' x-powered-by: - ASP.NET status: @@ -4724,21 +4542,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"InProgress","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4747,7 +4565,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:35 GMT + - Tue, 13 Jul 2021 14:54:44 GMT expires: - '-1' pragma: @@ -4763,7 +4581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '125' x-powered-by: - ASP.NET status: @@ -4777,30 +4595,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d280b16-0da7-4b13-abd3-f20b49424bb1?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"InProgress","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d280b16-0da7-4b13-abd3-f20b49424bb1","name":"5d280b16-0da7-4b13-abd3-f20b49424bb1","status":"Succeeded","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"2021-07-13T14:54:14.1620697Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c8b9712a-6a60-4b96-898d-e0dd0358d5ab"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:36 GMT + - Tue, 13 Jul 2021 14:54:45 GMT expires: - '-1' pragma: @@ -4816,7 +4634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '124' x-powered-by: - ASP.NET status: @@ -4830,36 +4648,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/58558770-cff3-45fb-bf05-55bedfbd29e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8b9712a-6a60-4b96-898d-e0dd0358d5ab?api-version=2021-01-01 response: body: - string: '{"id":"58558770-cff3-45fb-bf05-55bedfbd29e1","name":"58558770-cff3-45fb-bf05-55bedfbd29e1","status":"Succeeded","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"2021-06-21T11:50:24.7162215Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bba055f0-148e-4f63-a0d9-afcc1d0d6f59"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8b9712a-6a60-4b96-898d-e0dd0358d5ab","name":"c8b9712a-6a60-4b96-898d-e0dd0358d5ab","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.7870995S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:54:14.1620697Z","endTime":"2021-07-13T14:54:44.9491692Z","activityId":"1d4e7034-e3ea-11eb-af68-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:37 GMT + - Tue, 13 Jul 2021 14:54: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: @@ -4869,7 +4689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -4883,38 +4703,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection update-for-vm + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --exclude-all-data-disks + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bba055f0-148e-4f63-a0d9-afcc1d0d6f59?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/bba055f0-148e-4f63-a0d9-afcc1d0d6f59","name":"bba055f0-148e-4f63-a0d9-afcc1d0d6f59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.8638665S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T11:50:24.7162215Z","endTime":"2021-06-21T11:50:36.580088Z","activityId":"dc852bfb-d286-11eb-990f-c8f750f92764"}}' + 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":"5297634","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '967' + - '2075' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:37 GMT + - Tue, 13 Jul 2021 14:54: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: @@ -4924,7 +4742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -4942,26 +4760,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"17593300670273","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","isArchiveEnabled":false}}]}' + 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":"5297634","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2079' + - '2075' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:38 GMT + - Tue, 13 Jul 2021 14:54:47 GMT expires: - '-1' pragma: @@ -4987,7 +4805,7 @@ interactions: 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": [1], "isInclusionList": false}}}}' + {"diskExclusionProperties": {"diskLunList": [], "isInclusionList": true}}}}' headers: Accept: - application/json @@ -4998,14 +4816,14 @@ interactions: Connection: - keep-alive Content-Length: - - '655' + - '653' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -5015,17 +4833,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 11:50:38 GMT + - Tue, 13 Jul 2021 14:54: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/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -5033,7 +4851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -5051,17 +4869,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5070,7 +4888,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:39 GMT + - Tue, 13 Jul 2021 14:54:48 GMT expires: - '-1' pragma: @@ -5104,17 +4922,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5123,7 +4941,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:40 GMT + - Tue, 13 Jul 2021 14:54:49 GMT expires: - '-1' pragma: @@ -5157,17 +4975,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5176,7 +4994,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:41 GMT + - Tue, 13 Jul 2021 14:54:50 GMT expires: - '-1' pragma: @@ -5210,17 +5028,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5229,7 +5047,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:42 GMT + - Tue, 13 Jul 2021 14:54:51 GMT expires: - '-1' pragma: @@ -5263,17 +5081,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5282,7 +5100,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:44 GMT + - Tue, 13 Jul 2021 14:54:53 GMT expires: - '-1' pragma: @@ -5316,17 +5134,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5335,7 +5153,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:45 GMT + - Tue, 13 Jul 2021 14:54:54 GMT expires: - '-1' pragma: @@ -5369,17 +5187,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5388,7 +5206,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:46 GMT + - Tue, 13 Jul 2021 14:54:55 GMT expires: - '-1' pragma: @@ -5422,17 +5240,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5441,7 +5259,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:47 GMT + - Tue, 13 Jul 2021 14:54:56 GMT expires: - '-1' pragma: @@ -5475,17 +5293,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"InProgress","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5494,7 +5312,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:49 GMT + - Tue, 13 Jul 2021 14:54:58 GMT expires: - '-1' pragma: @@ -5528,26 +5346,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8ee1554e-8142-4fe7-9643-1971c0e6b425?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"InProgress","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8ee1554e-8142-4fe7-9643-1971c0e6b425","name":"8ee1554e-8142-4fe7-9643-1971c0e6b425","status":"Succeeded","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"2021-07-13T14:54:48.1562075Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3114772e-5ba9-4314-8d9e-7ed43b85d9f9"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:50 GMT + - Tue, 13 Jul 2021 14:54:59 GMT expires: - '-1' pragma: @@ -5581,32 +5399,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c09702f4-de35-4889-bbe2-fed990fdb00c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3114772e-5ba9-4314-8d9e-7ed43b85d9f9?api-version=2021-01-01 response: body: - string: '{"id":"c09702f4-de35-4889-bbe2-fed990fdb00c","name":"c09702f4-de35-4889-bbe2-fed990fdb00c","status":"Succeeded","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"2021-06-21T11:50:39.5188549Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a25b524d-6e82-4754-9a10-7ded7059be7b"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3114772e-5ba9-4314-8d9e-7ed43b85d9f9","name":"3114772e-5ba9-4314-8d9e-7ed43b85d9f9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.8607679S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:54:48.1562075Z","endTime":"2021-07-13T14:54:59.0169754Z","activityId":"42cc8440-e3ea-11eb-993d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:51 GMT + - Tue, 13 Jul 2021 14: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: @@ -5616,7 +5436,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -5636,32 +5456,30 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a25b524d-6e82-4754-9a10-7ded7059be7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/a25b524d-6e82-4754-9a10-7ded7059be7b","name":"a25b524d-6e82-4754-9a10-7ded7059be7b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.5582057S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T11:50:39.5188549Z","endTime":"2021-06-21T11:50:51.0770606Z","activityId":"e59fb1b3-d286-11eb-b6f1-c8f750f92764"}}' + 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":"5297634","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '968' + - '2072' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:52 GMT + - Tue, 13 Jul 2021 14: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: @@ -5678,58 +5496,61 @@ interactions: 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": [1], "isInclusionList": false}}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection update-for-vm Connection: - keep-alive + Content-Length: + - '655' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 response: body: - string: '{"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":"17593300670273","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","isArchiveEnabled":false}}]}' + string: '' headers: + 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/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 cache-control: - no-cache content-length: - - '2081' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:50:53 GMT + - Tue, 13 Jul 2021 14:55: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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: @@ -5738,30 +5559,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"17593300670273","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","isArchiveEnabled":false}}]}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2081' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:53 GMT + - Tue, 13 Jul 2021 14:55:01 GMT expires: - '-1' pragma: @@ -5777,66 +5598,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '86' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","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/f1883a51-c24f-42bc-a0d4-574b3deb2055?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 11:50:54 GMT + - Tue, 13 Jul 2021 14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/f1883a51-c24f-42bc-a0d4-574b3deb2055?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5845,21 +5665,21 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1883a51-c24f-42bc-a0d4-574b3deb2055?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"f1883a51-c24f-42bc-a0d4-574b3deb2055","name":"f1883a51-c24f-42bc-a0d4-574b3deb2055","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5868,7 +5688,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:54 GMT + - Tue, 13 Jul 2021 14:55:04 GMT expires: - '-1' pragma: @@ -5884,7 +5704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '84' x-powered-by: - ASP.NET status: @@ -5898,30 +5718,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1883a51-c24f-42bc-a0d4-574b3deb2055?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"f1883a51-c24f-42bc-a0d4-574b3deb2055","name":"f1883a51-c24f-42bc-a0d4-574b3deb2055","status":"Succeeded","startTime":"2021-06-21T11:50:54.8436758Z","endTime":"2021-06-21T11:50:54.8436758Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:56 GMT + - Tue, 13 Jul 2021 14:55:05 GMT expires: - '-1' pragma: @@ -5937,7 +5757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '83' x-powered-by: - ASP.NET status: @@ -5951,40 +5771,36 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.3242915S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:58 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -5994,7 +5810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '82' x-powered-by: - ASP.NET status: @@ -6008,40 +5824,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.1989456S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:59 GMT + - Tue, 13 Jul 2021 14: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: @@ -6051,7 +5863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '81' x-powered-by: - ASP.NET status: @@ -6065,40 +5877,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.6005046S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:50:59 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6108,7 +5916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '80' x-powered-by: - ASP.NET status: @@ -6122,40 +5930,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36.1746352S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1157' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:51:30 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6165,7 +5969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '79' x-powered-by: - ASP.NET status: @@ -6179,40 +5983,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M6.6288549S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:52:00 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6222,7 +6022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '78' x-powered-by: - ASP.NET status: @@ -6236,40 +6036,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M37.0373779S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"InProgress","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 11:52:31 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6279,7 +6075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '77' x-powered-by: - ASP.NET status: @@ -6293,40 +6089,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59769036-141c-4166-87f3-13040806e67d?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M7.4321376S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"59769036-141c-4166-87f3-13040806e67d","name":"59769036-141c-4166-87f3-13040806e67d","status":"Succeeded","startTime":"2021-07-13T14:55:01.3934314Z","endTime":"2021-07-13T14:55:01.3934314Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4934b667-a09c-4838-a74b-6329d2592dc1"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 11:53:01 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6336,7 +6128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '76' x-powered-by: - ASP.NET status: @@ -6350,33 +6142,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4934b667-a09c-4838-a74b-6329d2592dc1?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M38.0003829S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4934b667-a09c-4838-a74b-6329d2592dc1","name":"4934b667-a09c-4838-a74b-6329d2592dc1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12.0992652S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:55:01.4090492Z","endTime":"2021-07-13T14:55:13.5083144Z","activityId":"4a948af8-e3ea-11eb-94c9-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 11:53:33 GMT + - Tue, 13 Jul 2021 14:55:14 GMT expires: - '-1' pragma: @@ -6393,7 +6183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -6407,40 +6197,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M8.4067965S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + 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":"5297634","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '2074' content-type: - application/json date: - - Mon, 21 Jun 2021 11:54:03 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6450,7 +6236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '148' x-powered-by: - ASP.NET status: @@ -6464,40 +6250,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M38.9066875S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + 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":"5297634","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2074' content-type: - application/json date: - - Mon, 21 Jun 2021 11:54:33 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6507,69 +6289,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-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/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M9.4436991S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '' headers: + 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/d107766c-d36a-4314-8c4f-0083b040a915?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1158' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 11:55:03 GMT + - Tue, 13 Jul 2021 14:55: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/d107766c-d36a-4314-8c4f-0083b040a915?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + 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: @@ -6578,40 +6357,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d107766c-d36a-4314-8c4f-0083b040a915?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M39.9891693S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"d107766c-d36a-4314-8c4f-0083b040a915","name":"d107766c-d36a-4314-8c4f-0083b040a915","status":"Succeeded","startTime":"2021-07-13T14:55:16.4648773Z","endTime":"2021-07-13T14:55:16.4648773Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 11:55:35 GMT + - Tue, 13 Jul 2021 14:55: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: @@ -6621,7 +6396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -6635,33 +6410,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M10.5091478S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT0.9933212S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 11:56:05 GMT + - Tue, 13 Jul 2021 14:55:17 GMT expires: - '-1' pragma: @@ -6678,7 +6453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '149' x-powered-by: - ASP.NET status: @@ -6698,27 +6473,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M40.9691588S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.7433406S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 11:56:35 GMT + - Tue, 13 Jul 2021 14:55:18 GMT expires: - '-1' pragma: @@ -6735,7 +6510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '148' x-powered-by: - ASP.NET status: @@ -6755,27 +6530,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M11.4464453S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.1727373S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 11:57:06 GMT + - Tue, 13 Jul 2021 14:55:18 GMT expires: - '-1' pragma: @@ -6792,7 +6567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '147' x-powered-by: - ASP.NET status: @@ -6812,27 +6587,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M41.8206997S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32.5981164S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 11:57:36 GMT + - Tue, 13 Jul 2021 14:55:48 GMT expires: - '-1' pragma: @@ -6849,7 +6624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '146' x-powered-by: - ASP.NET status: @@ -6869,27 +6644,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M12.3022607S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.1275726S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 11:58:06 GMT + - Tue, 13 Jul 2021 14:56:19 GMT expires: - '-1' pragma: @@ -6906,7 +6681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '145' x-powered-by: - ASP.NET status: @@ -6926,27 +6701,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M42.8345241S","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M33.6881342S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 11:58:37 GMT + - Tue, 13 Jul 2021 14:56:50 GMT expires: - '-1' pragma: @@ -6963,7 +6738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '144' x-powered-by: - ASP.NET status: @@ -6983,18 +6758,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M13.5840423S","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.1606148S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7003,7 +6778,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 11:59:07 GMT + - Tue, 13 Jul 2021 14:57:20 GMT expires: - '-1' pragma: @@ -7020,7 +6795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '143' x-powered-by: - ASP.NET status: @@ -7040,27 +6815,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M44.0726292S","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M34.5724137S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 11:59:39 GMT + - Tue, 13 Jul 2021 14:57:51 GMT expires: - '-1' pragma: @@ -7077,7 +6852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '142' x-powered-by: - ASP.NET status: @@ -7097,18 +6872,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M14.6336775S","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.0472888S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7117,7 +6892,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:00:09 GMT + - Tue, 13 Jul 2021 14:58:21 GMT expires: - '-1' pragma: @@ -7134,7 +6909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '141' x-powered-by: - ASP.NET status: @@ -7154,27 +6929,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M45.2095687S","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M35.4755724S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:00:40 GMT + - Tue, 13 Jul 2021 14:58:52 GMT expires: - '-1' pragma: @@ -7191,7 +6966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '140' x-powered-by: - ASP.NET status: @@ -7211,27 +6986,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M15.6359661S","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M5.9165502S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:01:10 GMT + - Tue, 13 Jul 2021 14:59:22 GMT expires: - '-1' pragma: @@ -7248,7 +7023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '139' x-powered-by: - ASP.NET status: @@ -7268,27 +7043,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M46.0660882S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M36.342386S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:01:40 GMT + - Tue, 13 Jul 2021 14:59:52 GMT expires: - '-1' pragma: @@ -7305,7 +7080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '138' x-powered-by: - ASP.NET status: @@ -7325,27 +7100,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M40.0108768S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M6.7849955S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:02:34 GMT + - Tue, 13 Jul 2021 15:00:23 GMT expires: - '-1' pragma: @@ -7362,7 +7137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '137' x-powered-by: - ASP.NET status: @@ -7382,27 +7157,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M10.5173525S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M58.253023S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:03:04 GMT + - Tue, 13 Jul 2021 15:01:14 GMT expires: - '-1' pragma: @@ -7419,7 +7194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '136' x-powered-by: - ASP.NET status: @@ -7439,27 +7214,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M41.1241062S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M29.4066S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 12:03:36 GMT + - Tue, 13 Jul 2021 15:01:46 GMT expires: - '-1' pragma: @@ -7476,7 +7251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '135' x-powered-by: - ASP.NET status: @@ -7496,27 +7271,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M11.5877015S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M0.3041602S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:04:06 GMT + - Tue, 13 Jul 2021 15:02:16 GMT expires: - '-1' pragma: @@ -7533,7 +7308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '134' x-powered-by: - ASP.NET status: @@ -7553,27 +7328,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M42.309873S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M30.8093326S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:04:36 GMT + - Tue, 13 Jul 2021 15:02:46 GMT expires: - '-1' pragma: @@ -7590,7 +7365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '133' x-powered-by: - ASP.NET status: @@ -7610,27 +7385,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M12.8216162S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M1.2745378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 12:05:07 GMT + - Tue, 13 Jul 2021 15:03:17 GMT expires: - '-1' pragma: @@ -7647,7 +7422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '132' x-powered-by: - ASP.NET status: @@ -7667,27 +7442,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M43.3383296S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M32.0777335S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:05:38 GMT + - Tue, 13 Jul 2021 15:03:48 GMT expires: - '-1' pragma: @@ -7704,7 +7479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '131' x-powered-by: - ASP.NET status: @@ -7724,27 +7499,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M13.8040853S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M2.750156S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 12:06:08 GMT + - Tue, 13 Jul 2021 15:04:18 GMT expires: - '-1' pragma: @@ -7761,7 +7536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '130' x-powered-by: - ASP.NET status: @@ -7781,27 +7556,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M44.2846869S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M33.4257295S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:06:39 GMT + - Tue, 13 Jul 2021 15:04:50 GMT expires: - '-1' pragma: @@ -7818,7 +7593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '129' x-powered-by: - ASP.NET status: @@ -7838,27 +7613,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M14.7456103S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M3.8827579S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:07:09 GMT + - Tue, 13 Jul 2021 15:05:20 GMT expires: - '-1' pragma: @@ -7875,7 +7650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '128' x-powered-by: - ASP.NET status: @@ -7895,27 +7670,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M45.202938S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M34.5855917S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:07:40 GMT + - Tue, 13 Jul 2021 15:05:50 GMT expires: - '-1' pragma: @@ -7932,7 +7707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '127' x-powered-by: - ASP.NET status: @@ -7952,27 +7727,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M15.8949501S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M5.0403286S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:08:10 GMT + - Tue, 13 Jul 2021 15:06:21 GMT expires: - '-1' pragma: @@ -7989,7 +7764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '126' x-powered-by: - ASP.NET status: @@ -8009,18 +7784,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M46.4265021S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M35.4483865S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8029,7 +7804,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:08:40 GMT + - Tue, 13 Jul 2021 15:06:51 GMT expires: - '-1' pragma: @@ -8046,7 +7821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '124' x-powered-by: - ASP.NET status: @@ -8066,27 +7841,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M16.8476932S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M5.9106667S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:09:11 GMT + - Tue, 13 Jul 2021 15:07:21 GMT expires: - '-1' pragma: @@ -8103,7 +7878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '123' x-powered-by: - ASP.NET status: @@ -8123,18 +7898,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M47.3447042S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M36.4745553S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8143,7 +7918,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:09:41 GMT + - Tue, 13 Jul 2021 15:07:52 GMT expires: - '-1' pragma: @@ -8160,7 +7935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '122' x-powered-by: - ASP.NET status: @@ -8180,27 +7955,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M18.0743295S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M6.9257579S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:10:13 GMT + - Tue, 13 Jul 2021 15:08:23 GMT expires: - '-1' pragma: @@ -8217,7 +7992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '121' x-powered-by: - ASP.NET status: @@ -8237,27 +8012,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M48.9074583S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M37.373044S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:10:43 GMT + - Tue, 13 Jul 2021 15:08:54 GMT expires: - '-1' pragma: @@ -8274,7 +8049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '120' x-powered-by: - ASP.NET status: @@ -8294,27 +8069,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M19.3630052S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M7.8097909S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:11:13 GMT + - Tue, 13 Jul 2021 15:09:24 GMT expires: - '-1' pragma: @@ -8331,7 +8106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '119' x-powered-by: - ASP.NET status: @@ -8351,27 +8126,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M50.0181648S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M38.223937S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:11:45 GMT + - Tue, 13 Jul 2021 15:09:54 GMT expires: - '-1' pragma: @@ -8388,7 +8163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '118' x-powered-by: - ASP.NET status: @@ -8408,18 +8183,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M20.451404S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M8.6928609S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8428,7 +8203,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:12:15 GMT + - Tue, 13 Jul 2021 15:10:25 GMT expires: - '-1' pragma: @@ -8445,7 +8220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '117' x-powered-by: - ASP.NET status: @@ -8465,27 +8240,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M50.9249262S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M39.170938S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:12:45 GMT + - Tue, 13 Jul 2021 15:10:55 GMT expires: - '-1' pragma: @@ -8502,7 +8277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '116' x-powered-by: - ASP.NET status: @@ -8522,27 +8297,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M21.3209933S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M9.8142076S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:13:16 GMT + - Tue, 13 Jul 2021 15:11:26 GMT expires: - '-1' pragma: @@ -8559,7 +8334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '115' x-powered-by: - ASP.NET status: @@ -8579,18 +8354,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M51.860164S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M40.367566S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8599,7 +8374,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:13:46 GMT + - Tue, 13 Jul 2021 15:11:56 GMT expires: - '-1' pragma: @@ -8616,7 +8391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '114' x-powered-by: - ASP.NET status: @@ -8636,18 +8411,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M22.4061648S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M10.8006361S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8656,7 +8431,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:14:17 GMT + - Tue, 13 Jul 2021 15:12:26 GMT expires: - '-1' pragma: @@ -8673,7 +8448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '113' x-powered-by: - ASP.NET status: @@ -8693,18 +8468,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M52.9151712S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M41.4184868S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8713,7 +8488,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:14:48 GMT + - Tue, 13 Jul 2021 15:12:57 GMT expires: - '-1' pragma: @@ -8730,7 +8505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '112' x-powered-by: - ASP.NET status: @@ -8750,18 +8525,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M23.3700441S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M11.9849383S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8770,7 +8545,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:15:18 GMT + - Tue, 13 Jul 2021 15:13:28 GMT expires: - '-1' pragma: @@ -8787,7 +8562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '111' x-powered-by: - ASP.NET status: @@ -8807,27 +8582,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M53.831785S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M42.3767787S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:15:48 GMT + - Tue, 13 Jul 2021 15:13:59 GMT expires: - '-1' pragma: @@ -8844,7 +8619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '110' x-powered-by: - ASP.NET status: @@ -8864,18 +8639,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M24.2414849S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M12.9374397S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8884,7 +8659,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:16:19 GMT + - Tue, 13 Jul 2021 15:14:29 GMT expires: - '-1' pragma: @@ -8901,7 +8676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '109' x-powered-by: - ASP.NET status: @@ -8921,18 +8696,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M54.6211479S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M43.4272692S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8941,7 +8716,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:16:49 GMT + - Tue, 13 Jul 2021 15:14:59 GMT expires: - '-1' pragma: @@ -8958,7 +8733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '108' x-powered-by: - ASP.NET status: @@ -8978,18 +8753,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M25.0445584S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M13.8782845S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8998,7 +8773,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:20 GMT + - Tue, 13 Jul 2021 15:15:30 GMT expires: - '-1' pragma: @@ -9015,7 +8790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '107' x-powered-by: - ASP.NET status: @@ -9035,18 +8810,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M55.4694676S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M44.2913164S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9055,7 +8830,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Tue, 13 Jul 2021 15:16:00 GMT expires: - '-1' pragma: @@ -9072,7 +8847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '106' x-powered-by: - ASP.NET status: @@ -9092,18 +8867,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M26.2472353S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M14.7633325S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9112,7 +8887,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Tue, 13 Jul 2021 15:16:30 GMT expires: - '-1' pragma: @@ -9129,7 +8904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '105' x-powered-by: - ASP.NET status: @@ -9149,18 +8924,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M56.6331501S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M45.5605247S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9169,7 +8944,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:51 GMT + - Tue, 13 Jul 2021 15:17:02 GMT expires: - '-1' pragma: @@ -9186,7 +8961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '104' x-powered-by: - ASP.NET status: @@ -9206,18 +8981,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M27.0740242S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M15.9539999S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9226,7 +9001,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Tue, 13 Jul 2021 15:17:32 GMT expires: - '-1' pragma: @@ -9243,7 +9018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '103' x-powered-by: - ASP.NET status: @@ -9263,18 +9038,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M57.5163361S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M46.4287727S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9283,7 +9058,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Tue, 13 Jul 2021 15:18:02 GMT expires: - '-1' pragma: @@ -9300,7 +9075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '102' x-powered-by: - ASP.NET status: @@ -9320,18 +9095,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M28.0714977S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M16.9214589S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9340,7 +9115,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:22 GMT + - Tue, 13 Jul 2021 15:18:33 GMT expires: - '-1' pragma: @@ -9357,7 +9132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '101' x-powered-by: - ASP.NET status: @@ -9377,18 +9152,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M58.6376205S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M47.3945847S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9397,7 +9172,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:53 GMT + - Tue, 13 Jul 2021 15:19:03 GMT expires: - '-1' pragma: @@ -9414,7 +9189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '100' x-powered-by: - ASP.NET status: @@ -9434,18 +9209,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M29.1404383S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M17.8037268S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9454,7 +9229,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:23 GMT + - Tue, 13 Jul 2021 15:19:34 GMT expires: - '-1' pragma: @@ -9471,7 +9246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '99' x-powered-by: - ASP.NET status: @@ -9491,18 +9266,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M59.5679889S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M48.2812346S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9511,7 +9286,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:53 GMT + - Tue, 13 Jul 2021 15:20:04 GMT expires: - '-1' pragma: @@ -9528,7 +9303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '98' x-powered-by: - ASP.NET status: @@ -9548,18 +9323,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M29.9884612S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M18.7517931S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9568,7 +9343,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:25 GMT + - Tue, 13 Jul 2021 15:20:35 GMT expires: - '-1' pragma: @@ -9585,7 +9360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '97' x-powered-by: - ASP.NET status: @@ -9605,27 +9380,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M0.4027407S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M49.2575481S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:22:55 GMT + - Tue, 13 Jul 2021 15:21:05 GMT expires: - '-1' pragma: @@ -9642,7 +9417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '96' x-powered-by: - ASP.NET status: @@ -9662,27 +9437,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M30.831084S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M19.7728736S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:25 GMT + - Tue, 13 Jul 2021 15:21:36 GMT expires: - '-1' pragma: @@ -9699,7 +9474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '95' x-powered-by: - ASP.NET status: @@ -9719,27 +9494,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M1.3131153S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M50.3434852S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:56 GMT + - Tue, 13 Jul 2021 15:22:06 GMT expires: - '-1' pragma: @@ -9756,7 +9531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '94' x-powered-by: - ASP.NET status: @@ -9776,18 +9551,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M31.7604441S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M20.9131863S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9796,7 +9571,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:26 GMT + - Tue, 13 Jul 2021 15:22:37 GMT expires: - '-1' pragma: @@ -9813,7 +9588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '93' x-powered-by: - ASP.NET status: @@ -9833,27 +9608,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M2.1409483S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M51.3589857S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:24:56 GMT + - Tue, 13 Jul 2021 15:23:07 GMT expires: - '-1' pragma: @@ -9870,7 +9645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '92' x-powered-by: - ASP.NET status: @@ -9890,18 +9665,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M32.6436413S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M21.8864308S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9910,7 +9685,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:25:27 GMT + - Tue, 13 Jul 2021 15:23:38 GMT expires: - '-1' pragma: @@ -9927,7 +9702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '91' x-powered-by: - ASP.NET status: @@ -9947,27 +9722,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M3.0791953S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M53.1178403S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:25:57 GMT + - Tue, 13 Jul 2021 15:24:09 GMT expires: - '-1' pragma: @@ -9984,7 +9759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '90' x-powered-by: - ASP.NET status: @@ -10004,18 +9779,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M33.4991722S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M24.0071603S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10024,7 +9799,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:27 GMT + - Tue, 13 Jul 2021 15:24:40 GMT expires: - '-1' pragma: @@ -10041,7 +9816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '89' x-powered-by: - ASP.NET status: @@ -10061,18 +9836,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M3.9608984S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M54.454962S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10081,7 +9856,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:26:58 GMT + - Tue, 13 Jul 2021 15:25:11 GMT expires: - '-1' pragma: @@ -10098,7 +9873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '88' x-powered-by: - ASP.NET status: @@ -10118,18 +9893,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M34.3991601S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M25.0110536S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10138,7 +9913,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:27:28 GMT + - Tue, 13 Jul 2021 15:25:41 GMT expires: - '-1' pragma: @@ -10155,7 +9930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '87' x-powered-by: - ASP.NET status: @@ -10175,27 +9950,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M4.958502S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M55.5039159S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:27:59 GMT + - Tue, 13 Jul 2021 15:26:11 GMT expires: - '-1' pragma: @@ -10212,7 +9987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '86' x-powered-by: - ASP.NET status: @@ -10232,18 +10007,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M35.4092551S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M25.9306483S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10252,7 +10027,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:28:29 GMT + - Tue, 13 Jul 2021 15:26:42 GMT expires: - '-1' pragma: @@ -10269,7 +10044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '85' x-powered-by: - ASP.NET status: @@ -10289,27 +10064,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M5.9203286S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M56.4017915S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:00 GMT + - Tue, 13 Jul 2021 15:27:12 GMT expires: - '-1' pragma: @@ -10326,7 +10101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '84' x-powered-by: - ASP.NET status: @@ -10346,18 +10121,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M36.2937054S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M26.8873697S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10366,7 +10141,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:29:30 GMT + - Tue, 13 Jul 2021 15:27:42 GMT expires: - '-1' pragma: @@ -10383,7 +10158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '83' x-powered-by: - ASP.NET status: @@ -10403,18 +10178,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M6.7221113S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M57.342597S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10423,7 +10198,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:01 GMT + - Tue, 13 Jul 2021 15:28:14 GMT expires: - '-1' pragma: @@ -10440,7 +10215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '82' x-powered-by: - ASP.NET status: @@ -10460,18 +10235,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M37.1419129S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M28.9462222S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10480,7 +10255,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:30:31 GMT + - Tue, 13 Jul 2021 15:28:45 GMT expires: - '-1' pragma: @@ -10497,7 +10272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '81' x-powered-by: - ASP.NET status: @@ -10517,27 +10292,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M7.6426446S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M59.4245636S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:31:01 GMT + - Tue, 13 Jul 2021 15:29:16 GMT expires: - '-1' pragma: @@ -10554,7 +10329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '80' x-powered-by: - ASP.NET status: @@ -10574,18 +10349,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M38.0606646S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M29.8822656S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10594,7 +10369,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:31:32 GMT + - Tue, 13 Jul 2021 15:29:46 GMT expires: - '-1' pragma: @@ -10611,7 +10386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '79' x-powered-by: - ASP.NET status: @@ -10631,18 +10406,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M8.5840366S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M0.6904754S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T11:50:54.8436758Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10651,7 +10426,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:03 GMT + - Tue, 13 Jul 2021 15:30:17 GMT expires: - '-1' pragma: @@ -10668,7 +10443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '78' x-powered-by: - ASP.NET status: @@ -10688,29 +10463,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0189230a-5b96-4e8a-bd7e-93ddb13cabfc","name":"0189230a-5b96-4e8a-bd7e-93ddb13cabfc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M14.2188046S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M31.6061791S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM","Backup Size":"11410 MB","Backed-up - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1; - mydisk3","Excluded disk(s)":"mydisk2"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-21T11:50:54.8436758Z","endTime":"2021-06-21T12:32:09.0624804Z","activityId":"ee935958-d286-11eb-a697-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1347' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:32:35 GMT + - Tue, 13 Jul 2021 15:30:47 GMT expires: - '-1' pragma: @@ -10727,7 +10500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '77' x-powered-by: - ASP.NET status: @@ -10741,37 +10514,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M2.9099092S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2456' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:06 GMT + - Tue, 13 Jul 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: @@ -10781,7 +10557,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '76' x-powered-by: - ASP.NET status: @@ -10795,39 +10571,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/17815933608700","name":"17815933608700","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T11:50:59.8617482Z","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},"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M33.8274843S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1562' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:07 GMT + - Tue, 13 Jul 2021 15:31: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: @@ -10837,7 +10614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '75' x-powered-by: - ASP.NET status: @@ -10851,37 +10628,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M4.3105764S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2456' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:09 GMT + - Tue, 13 Jul 2021 15:32: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: @@ -10891,7 +10671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '74' x-powered-by: - ASP.NET status: @@ -10905,36 +10685,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M34.7513528S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:10 GMT + - Tue, 13 Jul 2021 15:32: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: @@ -10944,7 +10728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '73' x-powered-by: - ASP.NET status: @@ -10958,37 +10742,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M5.2678384S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2456' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:12 GMT + - Tue, 13 Jul 2021 15:33: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: @@ -10998,7 +10785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '72' x-powered-by: - ASP.NET status: @@ -11012,36 +10799,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M35.7268112S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:13 GMT + - Tue, 13 Jul 2021 15:33: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: @@ -11051,7 +10842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '71' x-powered-by: - ASP.NET status: @@ -11065,39 +10856,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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/17815933608700?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/17815933608700","name":"17815933608700","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T11:50:59.8617482Z","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_38db8541008a4eb2b8369b76a630fe70"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]},"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M6.5170291S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1748' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:14 GMT + - Tue, 13 Jul 2021 15:34: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: @@ -11107,7 +10899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '70' x-powered-by: - ASP.NET status: @@ -11121,33 +10913,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: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A46%3A21.9398445Z''\"","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M36.9588434S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:14 GMT + - Tue, 13 Jul 2021 15:34: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: @@ -11156,6 +10955,10 @@ 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 @@ -11167,42 +10970,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 --restore-only-osdisk + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M7.422434S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '312' + - '1157' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:33:14 GMT + - Tue, 13 Jul 2021 15:35:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -11211,33 +11027,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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-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":"2021-06-21T11:47:30.2873613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T11:47:30.1779786Z","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/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M37.8939317S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '974' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:15 GMT + - Tue, 13 Jul 2021 15:35:54 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: @@ -11246,67 +11069,70 @@ interactions: - 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: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "17815933608700", "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": []}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive - Content-Length: - - '878' - Content-Type: - - application/json; charset=utf-8 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/17815933608700/restore?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M8.3757519S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:55:16.4648773Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: - 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/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '1158' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:33:16 GMT + - Tue, 13 Jul 2021 15:36: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/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + 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: @@ -11315,36 +11141,42 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407?api-version=2021-01-01 response: body: - string: '{"id":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db3e27d0-d27d-40ab-9c14-0b2e9ba02407","name":"db3e27d0-d27d-40ab-9c14-0b2e9ba02407","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M22.2150237S","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":"8/12/2021 12:00:00 AM","Backup Size":"11410 MB","Backed-up + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1; + mydisk3","Excluded disk(s)":"mydisk2"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T14:55:16.4648773Z","endTime":"2021-07-13T15:36:38.679901Z","activityId":"53c78170-e3ea-11eb-b30b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1346' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:16 GMT + - Tue, 13 Jul 2021 15: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: @@ -11354,7 +11186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '65' x-powered-by: - ASP.NET status: @@ -11368,30 +11200,31 @@ 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 --restore-only-osdisk + - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","status":"Succeeded","startTime":"2021-06-21T12:33:16.1841325Z","endTime":"2021-06-21T12:33:16.1841325Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2a97f446-6d23-47bc-8d8b-7372b567ef2c"}}' + 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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '2449' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:17 GMT + - Tue, 13 Jul 2021 15:37:25 GMT expires: - '-1' pragma: @@ -11421,40 +11254,39 @@ 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 --restore-only-osdisk + - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.1110591S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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/83448594925034","name":"83448594925034","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:55:20.4170068Z","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},"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}]}' headers: cache-control: - no-cache content-length: - - '1301' + - '1562' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:18 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11478,40 +11310,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.1668003S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1301' + - '2449' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:19 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11521,7 +11350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -11535,40 +11364,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.9652502S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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: - - '1301' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:20 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11578,7 +11403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -11592,40 +11417,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34.6800507S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1302' + - '2449' content-type: - application/json date: - - Mon, 21 Jun 2021 12:33:51 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11635,7 +11457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -11649,40 +11471,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M5.1797778S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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: - - '1303' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:22 GMT + - Tue, 13 Jul 2021 15:37:31 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -11692,7 +11510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -11706,40 +11524,39 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/83448594925034?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M35.783717S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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/83448594925034","name":"83448594925034","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:55:20.4170068Z","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_9ac7a2883beb4310a3d501c3de18558f"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]},"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' headers: cache-control: - no-cache content-length: - - '1303' + - '1748' content-type: - application/json date: - - Mon, 21 Jun 2021 12:34:51 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11749,7 +11566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -11763,41 +11580,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M6.3510464S","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 ":"6/21/2021 11:50:59 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-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T14%3A50%3A31.4419949Z''\"","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: - - '1394' + - '539' content-type: - application/json date: - - Mon, 21 Jun 2021 12:35:22 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11806,10 +11615,6 @@ 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 @@ -11821,41 +11626,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M37.0832301S","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 ":"6/21/2021 11:50:59 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-06-21T12:33:16.1841325Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' headers: cache-control: - no-cache content-length: - - '1395' + - '547' content-type: - application/json date: - - Mon, 21 Jun 2021 12:35:53 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -11865,7 +11665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -11879,62 +11679,42 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (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/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + 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/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.0297449S","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 ":"6/21/2021 11:50:59 AM","Config Blob Name":"config-clitestvmah3ld-2a97f446-6d23-47bc-8d8b-7372b567ef2c.json","Config - Blob Container Name":"clitestvmah3ld-9f5bfb60884e4e35962586a811340bd2","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-9f5bfb60884e4e35962586a811340bd2/config-clitestvmah3ld-2a97f446-6d23-47bc-8d8b-7372b567ef2c.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-9f5bfb60884e4e35962586a811340bd2/azuredeploy2a97f446-6d23-47bc-8d8b-7372b567ef2c.json","Restored - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70","Backed-up - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1; - mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:33:16.1841325Z","endTime":"2021-06-21T12:36:23.2138774Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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: - - '2135' + - '312' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:36:24 GMT + - Tue, 13 Jul 2021 15:37: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 + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -11943,47 +11723,33 @@ 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 --restore-only-osdisk User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (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/backupJobs/2a97f446-6d23-47bc-8d8b-7372b567ef2c?api-version=2021-01-01 + 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/2a97f446-6d23-47bc-8d8b-7372b567ef2c","name":"2a97f446-6d23-47bc-8d8b-7372b567ef2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.0297449S","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 ":"6/21/2021 11:50:59 AM","Config Blob Name":"config-clitestvmah3ld-2a97f446-6d23-47bc-8d8b-7372b567ef2c.json","Config - Blob Container Name":"clitestvmah3ld-9f5bfb60884e4e35962586a811340bd2","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-9f5bfb60884e4e35962586a811340bd2/config-clitestvmah3ld-2a97f446-6d23-47bc-8d8b-7372b567ef2c.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-9f5bfb60884e4e35962586a811340bd2/azuredeploy2a97f446-6d23-47bc-8d8b-7372b567ef2c.json","Restored - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70","Backed-up - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1; - mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:33:16.1841325Z","endTime":"2021-06-21T12:36:23.2138774Z","activityId":"d540f10b-d28c-11eb-95e1-c8f750f92764"}}' + 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-07-13T14:51:41.3944999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T14:51:41.3163767Z","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: - - '2135' + - '974' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:54 GMT + - Tue, 13 Jul 2021 15:37:36 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: @@ -11992,15 +11758,16 @@ 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 - request: - body: null + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "83448594925034", "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 @@ -12010,49 +11777,48 @@ interactions: - backup restore restore-disks Connection: - keep-alive + Content-Length: + - '878' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + 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/83448594925034/restore?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '' headers: + 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/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 cache-control: - no-cache content-length: - - '2608' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:36:54 GMT + - Tue, 13 Jul 2021 15:37: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -12065,26 +11831,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","status":"Succeeded","startTime":"2021-07-13T15:37:38.4265717Z","endTime":"2021-07-13T15:37:38.4265717Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4e40d222-90bd-4088-9731-7988b6b22c76"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:55 GMT + - Tue, 13 Jul 2021 15:37:39 GMT expires: - '-1' pragma: @@ -12118,33 +11884,36 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.6087571S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2608' + - '1300' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:55 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -12154,7 +11923,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -12168,36 +11937,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 --diskslist + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.2784157S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1300' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:56 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -12207,7 +11980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -12221,39 +11994,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 --diskslist + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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/17815933608700?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/17815933608700","name":"17815933608700","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T11:50:59.8617482Z","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_38db8541008a4eb2b8369b76a630fe70"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]},"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.6676604S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1748' + - '1300' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:57 GMT + - Tue, 13 Jul 2021 15:37: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: @@ -12263,7 +12037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -12277,33 +12051,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 --diskslist + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T11%3A46%3A21.9398445Z''\"","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/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.2169021S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1301' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:56 GMT + - Tue, 13 Jul 2021 15:38: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: @@ -12312,6 +12093,10 @@ 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 @@ -12323,42 +12108,1212 @@ 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 --diskslist + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-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/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.6407187S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '312' + - '1302' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:36:57 GMT + - Tue, 13 Jul 2021 15:38:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.1112681S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - '143' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.5830849S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1393' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - '142' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.0880326S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1394' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - '141' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.5086648S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:37:38.4265717Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1393' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:40:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.2890956S","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 ":"7/13/2021 2:55:20 PM","Config Blob Name":"config-clitestvmexo7g-4e40d222-90bd-4088-9731-7988b6b22c76.json","Config + Blob Container Name":"clitestvmexo7g-1871516a7dd24959bcd76cf5c53ab0a5","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-1871516a7dd24959bcd76cf5c53ab0a5/config-clitestvmexo7g-4e40d222-90bd-4088-9731-7988b6b22c76.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-1871516a7dd24959bcd76cf5c53ab0a5/azuredeploy4e40d222-90bd-4088-9731-7988b6b22c76.json","Restored + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f","Backed-up + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:37:38.4265717Z","endTime":"2021-07-13T15:40:44.7156673Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '2134' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - '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.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4e40d222-90bd-4088-9731-7988b6b22c76","name":"4e40d222-90bd-4088-9731-7988b6b22c76","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.2890956S","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 ":"7/13/2021 2:55:20 PM","Config Blob Name":"config-clitestvmexo7g-4e40d222-90bd-4088-9731-7988b6b22c76.json","Config + Blob Container Name":"clitestvmexo7g-1871516a7dd24959bcd76cf5c53ab0a5","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-1871516a7dd24959bcd76cf5c53ab0a5/config-clitestvmexo7g-4e40d222-90bd-4088-9731-7988b6b22c76.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-1871516a7dd24959bcd76cf5c53ab0a5/azuredeploy4e40d222-90bd-4088-9731-7988b6b22c76.json","Restored + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f","Backed-up + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:37:38.4265717Z","endTime":"2021-07-13T15:40:44.7156673Z","activityId":"3881dd7a-e3f0-11eb-a43b-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '2134' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2601' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1220' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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: + - '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 --diskslist + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2601' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1220' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: 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/83448594925034?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/83448594925034","name":"83448594925034","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:55:20.4170068Z","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_9ac7a2883beb4310a3d501c3de18558f"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]},"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1748' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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: + - '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 --diskslist + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T14%3A50%3A31.4419949Z''\"","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: + - Tue, 13 Jul 2021 15:41: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 + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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 restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + 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: + - Tue, 13 Jul 2021 15:41:49 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 + 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: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + 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":"2021-07-13T14:51:41.3944999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T14:51:41.3163767Z","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: + - Tue, 13 Jul 2021 15:41:49 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": + "83448594925034", "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 + Connection: + - keep-alive + Content-Length: + - '879' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/83448594925034/restore?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 15:41: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/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + response: + body: + string: '{"id":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","status":"Succeeded","startTime":"2021-07-13T15:41:50.8049534Z","endTime":"2021-07-13T15:41:50.8049534Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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 -t --storage-account --restore-to-staging-storage-account --diskslist + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.0008412S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1300' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.578352S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1299' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.9539902S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1300' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:41: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: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32.3841216S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1301' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15: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: + - 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: @@ -12367,33 +13322,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 --diskslist + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-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":"2021-06-21T11:47:30.2873613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T11:47:30.1779786Z","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/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M2.7775146S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '974' + - '1302' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:57 GMT + - Tue, 13 Jul 2021 15:42:53 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: @@ -12402,67 +13364,70 @@ 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": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "17815933608700", "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]}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive - Content-Length: - - '879' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/17815933608700/restore?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M33.1893449S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: - 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/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '1303' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:36:59 GMT + - Tue, 13 Jul 2021 15:43: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/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + 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: @@ -12471,36 +13436,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 --diskslist + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 response: body: - string: '{"id":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M3.6130049S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1393' content-type: - application/json date: - - Mon, 21 Jun 2021 12:36:58 GMT + - Tue, 13 Jul 2021 15:43: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: @@ -12510,7 +13480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '142' x-powered-by: - ASP.NET status: @@ -12524,36 +13494,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 --diskslist + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 response: body: - string: '{"id":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","status":"Succeeded","startTime":"2021-06-21T12:36:59.2832855Z","endTime":"2021-06-21T12:36:59.2832855Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"dd0a355d-0ff4-47e9-be0f-1be1626c6957"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M34.1079619S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1394' content-type: - application/json date: - - Mon, 21 Jun 2021 12:37:00 GMT + - Tue, 13 Jul 2021 15: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: @@ -12563,7 +13538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: @@ -12577,33 +13552,34 @@ 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 --diskslist + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.9159548S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.5542136S","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 ":"7/13/2021 2:55:20 PM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:41:50.8049534Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1301' + - '1393' content-type: - application/json date: - - Mon, 21 Jun 2021 12:37:01 GMT + - Tue, 13 Jul 2021 15:44:55 GMT expires: - '-1' pragma: @@ -12620,7 +13596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -12640,27 +13616,34 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.4682561S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.3979505S","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 ":"7/13/2021 2:55:20 PM","Config Blob Name":"config-clitestvmexo7g-1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee.json","Config + Blob Container Name":"clitestvmexo7g-63211865393c49cda8a450d85f033b31","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-63211865393c49cda8a450d85f033b31/config-clitestvmexo7g-1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-63211865393c49cda8a450d85f033b31/azuredeploy1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee.json","Restored + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1","Backed-up + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:41:50.8049534Z","endTime":"2021-07-13T15:44:56.2029039Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1301' + - '2143' content-type: - application/json date: - - Mon, 21 Jun 2021 12:37:02 GMT + - Tue, 13 Jul 2021 15:45:25 GMT expires: - '-1' pragma: @@ -12677,7 +13660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -12691,39 +13674,153 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.8249937S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","name":"1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.3979505S","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 ":"7/13/2021 2:55:20 PM","Config Blob Name":"config-clitestvmexo7g-1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee.json","Config + Blob Container Name":"clitestvmexo7g-63211865393c49cda8a450d85f033b31","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-63211865393c49cda8a450d85f033b31/config-clitestvmexo7g-1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmexo7g-63211865393c49cda8a450d85f033b31/azuredeploy1c7aaa63-d5c1-4cd9-92d5-00800e2d30ee.json","Restored + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1","Backed-up + disk(s)":"clitest-vm000003_disk1_9ac7a2883beb4310a3d501c3de18558f; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:41:50.8049534Z","endTime":"2021-07-13T15:44:56.2029039Z","activityId":"d2dc7610-e3f0-11eb-a476-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1301' + - '2143' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:45:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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: + - --backup-management-type -v -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 12:37:02 GMT + - Tue, 13 Jul 2021 15:45: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2601' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:45:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -12734,7 +13831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -12748,40 +13845,38 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.1939216S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + 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-07-13T14:55:16.4648773Z","protectedItemDataId":"5297634","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-07-13T14:55:20.4170068Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1302' + - '2601' content-type: - application/json date: - - Mon, 21 Jun 2021 12:37:32 GMT + - Tue, 13 Jul 2021 15:45:58 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -12791,7 +13886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -12805,55 +13900,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.661888S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1302' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:38:02 GMT + - Tue, 13 Jul 2021 15:45: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/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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: @@ -12862,40 +13952,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.0660435S","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 ":"6/21/2021 11:50:59 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:38:33 GMT + - Tue, 13 Jul 2021 15:45: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: @@ -12905,7 +13992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: @@ -12919,41 +14006,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.5884926S","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 ":"6/21/2021 11:50:59 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-06-21T12:36:59.2832855Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1394' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:39:04 GMT + - Tue, 13 Jul 2021 15:46: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: @@ -12963,7 +14046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '148' x-powered-by: - ASP.NET status: @@ -12977,47 +14060,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.0929821S","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 ":"6/21/2021 11:50:59 AM","Config Blob Name":"config-clitestvmah3ld-dd0a355d-0ff4-47e9-be0f-1be1626c6957.json","Config - Blob Container Name":"clitestvmah3ld-b8d7c2e5c4c34ecdb12124347380d41e","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-b8d7c2e5c4c34ecdb12124347380d41e/config-clitestvmah3ld-dd0a355d-0ff4-47e9-be0f-1be1626c6957.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-b8d7c2e5c4c34ecdb12124347380d41e/azuredeploydd0a355d-0ff4-47e9-be0f-1be1626c6957.json","Restored - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1","Backed-up - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1; - mydisk3"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:36:59.8418913Z","endTime":"2021-06-21T12:40:05.9348734Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2160' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:06 GMT + - Tue, 13 Jul 2021 15:46: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: @@ -13027,7 +14100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '147' x-powered-by: - ASP.NET status: @@ -13041,47 +14114,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dd0a355d-0ff4-47e9-be0f-1be1626c6957","name":"dd0a355d-0ff4-47e9-be0f-1be1626c6957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.0929821S","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 ":"6/21/2021 11:50:59 AM","Config Blob Name":"config-clitestvmah3ld-dd0a355d-0ff4-47e9-be0f-1be1626c6957.json","Config - Blob Container Name":"clitestvmah3ld-b8d7c2e5c4c34ecdb12124347380d41e","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-b8d7c2e5c4c34ecdb12124347380d41e/config-clitestvmah3ld-dd0a355d-0ff4-47e9-be0f-1be1626c6957.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmah3ld-b8d7c2e5c4c34ecdb12124347380d41e/azuredeploydd0a355d-0ff4-47e9-be0f-1be1626c6957.json","Restored - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1","Backed-up - disk(s)":"clitest-vm000003_disk1_38db8541008a4eb2b8369b76a630fe70; mydisk1; - mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T12:36:59.2832855Z","endTime":"2021-06-21T12:40:05.3762676Z","activityId":"5c7a6dd9-d28d-11eb-bc1e-c8f750f92764"}}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2144' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:37 GMT + - Tue, 13 Jul 2021 15:46:03 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13091,7 +14154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: @@ -13105,30 +14168,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:37 GMT + - Tue, 13 Jul 2021 15:46:04 GMT expires: - '-1' pragma: @@ -13144,7 +14208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -13158,31 +14222,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2608' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:37 GMT + - Tue, 13 Jul 2021 15:46:05 GMT expires: - '-1' pragma: @@ -13198,7 +14262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -13219,25 +14283,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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-06-21T11:50:54.8436758Z","protectedItemDataId":"17593300670273","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-06-21T11:50:59.8617482Z","isArchiveEnabled":false}}]}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2608' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:49 GMT + - Tue, 13 Jul 2021 15:46:07 GMT expires: - '-1' pragma: @@ -13253,7 +14316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -13270,47 +14333,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","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/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:40:49 GMT + - Tue, 13 Jul 2021 15:46: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/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + 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: @@ -13326,15 +14391,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13343,7 +14408,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:50 GMT + - Tue, 13 Jul 2021 15:46:09 GMT expires: - '-1' pragma: @@ -13359,7 +14424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '141' x-powered-by: - ASP.NET status: @@ -13380,15 +14445,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13397,7 +14462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:51 GMT + - Tue, 13 Jul 2021 15:46:10 GMT expires: - '-1' pragma: @@ -13413,7 +14478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '140' x-powered-by: - ASP.NET status: @@ -13434,15 +14499,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13451,7 +14516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:52 GMT + - Tue, 13 Jul 2021 15:46:11 GMT expires: - '-1' pragma: @@ -13467,7 +14532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '139' x-powered-by: - ASP.NET status: @@ -13488,15 +14553,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13505,7 +14570,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:54 GMT + - Tue, 13 Jul 2021 15:46:13 GMT expires: - '-1' pragma: @@ -13521,7 +14586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '138' x-powered-by: - ASP.NET status: @@ -13542,15 +14607,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13559,7 +14624,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:55 GMT + - Tue, 13 Jul 2021 15:46:14 GMT expires: - '-1' pragma: @@ -13575,7 +14640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '137' x-powered-by: - ASP.NET status: @@ -13596,15 +14661,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13613,7 +14678,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:56 GMT + - Tue, 13 Jul 2021 15:46:15 GMT expires: - '-1' pragma: @@ -13629,7 +14694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '136' x-powered-by: - ASP.NET status: @@ -13650,15 +14715,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13667,7 +14732,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:57 GMT + - Tue, 13 Jul 2021 15:46:16 GMT expires: - '-1' pragma: @@ -13683,7 +14748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '135' x-powered-by: - ASP.NET status: @@ -13704,15 +14769,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13721,7 +14786,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:40:58 GMT + - Tue, 13 Jul 2021 15:46:18 GMT expires: - '-1' pragma: @@ -13737,7 +14802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '134' x-powered-by: - ASP.NET status: @@ -13758,15 +14823,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13775,7 +14840,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:00 GMT + - Tue, 13 Jul 2021 15:46:19 GMT expires: - '-1' pragma: @@ -13791,7 +14856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '133' x-powered-by: - ASP.NET status: @@ -13812,15 +14877,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13829,7 +14894,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:01 GMT + - Tue, 13 Jul 2021 15:46:20 GMT expires: - '-1' pragma: @@ -13845,7 +14910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '132' x-powered-by: - ASP.NET status: @@ -13866,15 +14931,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13883,7 +14948,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:02 GMT + - Tue, 13 Jul 2021 15:46:21 GMT expires: - '-1' pragma: @@ -13899,7 +14964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '131' x-powered-by: - ASP.NET status: @@ -13920,15 +14985,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13937,7 +15002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:03 GMT + - Tue, 13 Jul 2021 15:46:22 GMT expires: - '-1' pragma: @@ -13953,7 +15018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '130' x-powered-by: - ASP.NET status: @@ -13974,15 +15039,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13991,7 +15056,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:05 GMT + - Tue, 13 Jul 2021 15:46:24 GMT expires: - '-1' pragma: @@ -14007,7 +15072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '129' x-powered-by: - ASP.NET status: @@ -14028,15 +15093,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14045,7 +15110,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:06 GMT + - Tue, 13 Jul 2021 15:46:25 GMT expires: - '-1' pragma: @@ -14061,7 +15126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '128' x-powered-by: - ASP.NET status: @@ -14082,15 +15147,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14099,7 +15164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:07 GMT + - Tue, 13 Jul 2021 15:46:26 GMT expires: - '-1' pragma: @@ -14115,7 +15180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '127' x-powered-by: - ASP.NET status: @@ -14136,15 +15201,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14153,7 +15218,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:08 GMT + - Tue, 13 Jul 2021 15:46:27 GMT expires: - '-1' pragma: @@ -14169,7 +15234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '126' x-powered-by: - ASP.NET status: @@ -14190,15 +15255,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14207,7 +15272,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:09 GMT + - Tue, 13 Jul 2021 15:46:29 GMT expires: - '-1' pragma: @@ -14223,7 +15288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '125' x-powered-by: - ASP.NET status: @@ -14244,15 +15309,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14261,7 +15326,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:11 GMT + - Tue, 13 Jul 2021 15:46:30 GMT expires: - '-1' pragma: @@ -14277,7 +15342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '124' x-powered-by: - ASP.NET status: @@ -14298,15 +15363,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14315,7 +15380,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:12 GMT + - Tue, 13 Jul 2021 15:46:31 GMT expires: - '-1' pragma: @@ -14331,7 +15396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '123' x-powered-by: - ASP.NET status: @@ -14352,15 +15417,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14369,7 +15434,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:13 GMT + - Tue, 13 Jul 2021 15:46:32 GMT expires: - '-1' pragma: @@ -14385,7 +15450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '122' x-powered-by: - ASP.NET status: @@ -14406,15 +15471,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14423,7 +15488,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:14 GMT + - Tue, 13 Jul 2021 15:46:34 GMT expires: - '-1' pragma: @@ -14439,7 +15504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '121' x-powered-by: - ASP.NET status: @@ -14460,15 +15525,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14477,7 +15542,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:16 GMT + - Tue, 13 Jul 2021 15:46:35 GMT expires: - '-1' pragma: @@ -14493,7 +15558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '120' x-powered-by: - ASP.NET status: @@ -14514,15 +15579,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14531,7 +15596,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:17 GMT + - Tue, 13 Jul 2021 15:46:38 GMT expires: - '-1' pragma: @@ -14547,7 +15612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '119' x-powered-by: - ASP.NET status: @@ -14568,15 +15633,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14585,7 +15650,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:18 GMT + - Tue, 13 Jul 2021 15:46:39 GMT expires: - '-1' pragma: @@ -14601,7 +15666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '118' x-powered-by: - ASP.NET status: @@ -14622,15 +15687,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14639,7 +15704,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:19 GMT + - Tue, 13 Jul 2021 15:46:41 GMT expires: - '-1' pragma: @@ -14655,7 +15720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '117' x-powered-by: - ASP.NET status: @@ -14676,15 +15741,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14693,7 +15758,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:21 GMT + - Tue, 13 Jul 2021 15:46:42 GMT expires: - '-1' pragma: @@ -14709,7 +15774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '116' x-powered-by: - ASP.NET status: @@ -14730,15 +15795,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14747,7 +15812,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:22 GMT + - Tue, 13 Jul 2021 15:46:43 GMT expires: - '-1' pragma: @@ -14763,7 +15828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '115' x-powered-by: - ASP.NET status: @@ -14784,15 +15849,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14801,7 +15866,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:24 GMT + - Tue, 13 Jul 2021 15:46:45 GMT expires: - '-1' pragma: @@ -14817,7 +15882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '114' x-powered-by: - ASP.NET status: @@ -14838,15 +15903,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14855,7 +15920,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:25 GMT + - Tue, 13 Jul 2021 15:46:46 GMT expires: - '-1' pragma: @@ -14871,7 +15936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '113' x-powered-by: - ASP.NET status: @@ -14892,15 +15957,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14909,7 +15974,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:27 GMT + - Tue, 13 Jul 2021 15:46:47 GMT expires: - '-1' pragma: @@ -14925,7 +15990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '112' x-powered-by: - ASP.NET status: @@ -14946,15 +16011,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14963,7 +16028,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:28 GMT + - Tue, 13 Jul 2021 15:46:48 GMT expires: - '-1' pragma: @@ -14979,7 +16044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '111' x-powered-by: - ASP.NET status: @@ -15000,15 +16065,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15017,7 +16082,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:29 GMT + - Tue, 13 Jul 2021 15:46:49 GMT expires: - '-1' pragma: @@ -15033,7 +16098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '110' x-powered-by: - ASP.NET status: @@ -15054,15 +16119,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15071,7 +16136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:30 GMT + - Tue, 13 Jul 2021 15:46:51 GMT expires: - '-1' pragma: @@ -15087,7 +16152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '109' x-powered-by: - ASP.NET status: @@ -15108,15 +16173,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15125,7 +16190,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:31 GMT + - Tue, 13 Jul 2021 15:46:52 GMT expires: - '-1' pragma: @@ -15141,7 +16206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '108' x-powered-by: - ASP.NET status: @@ -15162,15 +16227,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15179,7 +16244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:33 GMT + - Tue, 13 Jul 2021 15:46:53 GMT expires: - '-1' pragma: @@ -15195,7 +16260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '107' x-powered-by: - ASP.NET status: @@ -15216,15 +16281,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15233,7 +16298,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:34 GMT + - Tue, 13 Jul 2021 15:46:54 GMT expires: - '-1' pragma: @@ -15249,7 +16314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '106' x-powered-by: - ASP.NET status: @@ -15270,15 +16335,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15287,7 +16352,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:35 GMT + - Tue, 13 Jul 2021 15:46:56 GMT expires: - '-1' pragma: @@ -15303,7 +16368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '105' x-powered-by: - ASP.NET status: @@ -15324,15 +16389,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15341,7 +16406,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:36 GMT + - Tue, 13 Jul 2021 15:46:57 GMT expires: - '-1' pragma: @@ -15357,7 +16422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '104' x-powered-by: - ASP.NET status: @@ -15378,15 +16443,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15395,7 +16460,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:37 GMT + - Tue, 13 Jul 2021 15:46:58 GMT expires: - '-1' pragma: @@ -15411,7 +16476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '103' x-powered-by: - ASP.NET status: @@ -15432,15 +16497,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15449,7 +16514,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:39 GMT + - Tue, 13 Jul 2021 15:46:59 GMT expires: - '-1' pragma: @@ -15465,7 +16530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '102' x-powered-by: - ASP.NET status: @@ -15486,15 +16551,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15503,7 +16568,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:40 GMT + - Tue, 13 Jul 2021 15:47:00 GMT expires: - '-1' pragma: @@ -15519,7 +16584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '101' x-powered-by: - ASP.NET status: @@ -15540,15 +16605,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15557,7 +16622,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:41 GMT + - Tue, 13 Jul 2021 15:47:02 GMT expires: - '-1' pragma: @@ -15573,7 +16638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '100' x-powered-by: - ASP.NET status: @@ -15594,15 +16659,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15611,7 +16676,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:42 GMT + - Tue, 13 Jul 2021 15:47:04 GMT expires: - '-1' pragma: @@ -15627,7 +16692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '99' x-powered-by: - ASP.NET status: @@ -15648,15 +16713,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15665,7 +16730,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:44 GMT + - Tue, 13 Jul 2021 15:47:05 GMT expires: - '-1' pragma: @@ -15681,7 +16746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '98' x-powered-by: - ASP.NET status: @@ -15702,15 +16767,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15719,7 +16784,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:45 GMT + - Tue, 13 Jul 2021 15:47:06 GMT expires: - '-1' pragma: @@ -15735,7 +16800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '97' x-powered-by: - ASP.NET status: @@ -15756,15 +16821,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15773,7 +16838,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:46 GMT + - Tue, 13 Jul 2021 15:47:08 GMT expires: - '-1' pragma: @@ -15789,7 +16854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '96' x-powered-by: - ASP.NET status: @@ -15810,15 +16875,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15827,7 +16892,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:47 GMT + - Tue, 13 Jul 2021 15:47:09 GMT expires: - '-1' pragma: @@ -15843,7 +16908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '95' x-powered-by: - ASP.NET status: @@ -15864,15 +16929,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15881,7 +16946,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:49 GMT + - Tue, 13 Jul 2021 15:47:10 GMT expires: - '-1' pragma: @@ -15897,7 +16962,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '94' x-powered-by: - ASP.NET status: @@ -15918,15 +16983,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15935,7 +17000,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:50 GMT + - Tue, 13 Jul 2021 15:47:12 GMT expires: - '-1' pragma: @@ -15951,7 +17016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '93' x-powered-by: - ASP.NET status: @@ -15972,15 +17037,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15989,7 +17054,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:51 GMT + - Tue, 13 Jul 2021 15:47:13 GMT expires: - '-1' pragma: @@ -16005,7 +17070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '92' x-powered-by: - ASP.NET status: @@ -16026,15 +17091,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16043,7 +17108,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:52 GMT + - Tue, 13 Jul 2021 15:47:14 GMT expires: - '-1' pragma: @@ -16059,7 +17124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '91' x-powered-by: - ASP.NET status: @@ -16080,15 +17145,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16097,7 +17162,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:53 GMT + - Tue, 13 Jul 2021 15:47:15 GMT expires: - '-1' pragma: @@ -16113,7 +17178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '90' x-powered-by: - ASP.NET status: @@ -16134,15 +17199,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16151,7 +17216,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:55 GMT + - Tue, 13 Jul 2021 15:47:16 GMT expires: - '-1' pragma: @@ -16167,7 +17232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '89' x-powered-by: - ASP.NET status: @@ -16188,15 +17253,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16205,7 +17270,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:56 GMT + - Tue, 13 Jul 2021 15:47:18 GMT expires: - '-1' pragma: @@ -16221,7 +17286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '88' x-powered-by: - ASP.NET status: @@ -16242,15 +17307,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16259,7 +17324,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:57 GMT + - Tue, 13 Jul 2021 15:47:19 GMT expires: - '-1' pragma: @@ -16275,7 +17340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '87' x-powered-by: - ASP.NET status: @@ -16296,15 +17361,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16313,7 +17378,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:41:58 GMT + - Tue, 13 Jul 2021 15:47:20 GMT expires: - '-1' pragma: @@ -16329,7 +17394,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '86' x-powered-by: - ASP.NET status: @@ -16350,15 +17415,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16367,7 +17432,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:00 GMT + - Tue, 13 Jul 2021 15:47:21 GMT expires: - '-1' pragma: @@ -16383,7 +17448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '85' x-powered-by: - ASP.NET status: @@ -16404,15 +17469,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16421,7 +17486,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:01 GMT + - Tue, 13 Jul 2021 15:47:23 GMT expires: - '-1' pragma: @@ -16437,7 +17502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' + - '84' x-powered-by: - ASP.NET status: @@ -16458,15 +17523,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16475,7 +17540,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:02 GMT + - Tue, 13 Jul 2021 15:47:24 GMT expires: - '-1' pragma: @@ -16491,7 +17556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' + - '83' x-powered-by: - ASP.NET status: @@ -16512,15 +17577,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16529,7 +17594,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:03 GMT + - Tue, 13 Jul 2021 15:47:25 GMT expires: - '-1' pragma: @@ -16545,7 +17610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' + - '82' x-powered-by: - ASP.NET status: @@ -16566,15 +17631,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16583,7 +17648,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:04 GMT + - Tue, 13 Jul 2021 15:47:26 GMT expires: - '-1' pragma: @@ -16599,7 +17664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' + - '81' x-powered-by: - ASP.NET status: @@ -16620,15 +17685,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16637,7 +17702,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:06 GMT + - Tue, 13 Jul 2021 15:47:27 GMT expires: - '-1' pragma: @@ -16653,7 +17718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' + - '80' x-powered-by: - ASP.NET status: @@ -16674,15 +17739,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16691,7 +17756,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:07 GMT + - Tue, 13 Jul 2021 15:47:29 GMT expires: - '-1' pragma: @@ -16707,7 +17772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' + - '79' x-powered-by: - ASP.NET status: @@ -16728,15 +17793,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16745,7 +17810,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:08 GMT + - Tue, 13 Jul 2021 15:47:30 GMT expires: - '-1' pragma: @@ -16761,7 +17826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' + - '78' x-powered-by: - ASP.NET status: @@ -16782,15 +17847,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16799,7 +17864,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:09 GMT + - Tue, 13 Jul 2021 15:47:31 GMT expires: - '-1' pragma: @@ -16815,7 +17880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' + - '77' x-powered-by: - ASP.NET status: @@ -16836,15 +17901,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16853,7 +17918,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:10 GMT + - Tue, 13 Jul 2021 15:47:32 GMT expires: - '-1' pragma: @@ -16869,7 +17934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' + - '76' x-powered-by: - ASP.NET status: @@ -16890,15 +17955,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16907,7 +17972,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:12 GMT + - Tue, 13 Jul 2021 15:47:33 GMT expires: - '-1' pragma: @@ -16923,7 +17988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' + - '75' x-powered-by: - ASP.NET status: @@ -16944,15 +18009,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16961,7 +18026,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:13 GMT + - Tue, 13 Jul 2021 15:47:35 GMT expires: - '-1' pragma: @@ -16977,7 +18042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '74' x-powered-by: - ASP.NET status: @@ -16998,15 +18063,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17015,7 +18080,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:14 GMT + - Tue, 13 Jul 2021 15:47:37 GMT expires: - '-1' pragma: @@ -17031,7 +18096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' + - '73' x-powered-by: - ASP.NET status: @@ -17052,15 +18117,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17069,7 +18134,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:15 GMT + - Tue, 13 Jul 2021 15:47:38 GMT expires: - '-1' pragma: @@ -17085,7 +18150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '72' x-powered-by: - ASP.NET status: @@ -17106,15 +18171,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17123,7 +18188,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:16 GMT + - Tue, 13 Jul 2021 15:47:39 GMT expires: - '-1' pragma: @@ -17139,7 +18204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '71' x-powered-by: - ASP.NET status: @@ -17160,15 +18225,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17177,7 +18242,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:18 GMT + - Tue, 13 Jul 2021 15:47:40 GMT expires: - '-1' pragma: @@ -17193,7 +18258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' + - '70' x-powered-by: - ASP.NET status: @@ -17214,15 +18279,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17231,7 +18296,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:19 GMT + - Tue, 13 Jul 2021 15:47:42 GMT expires: - '-1' pragma: @@ -17247,7 +18312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' + - '69' x-powered-by: - ASP.NET status: @@ -17268,15 +18333,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17285,7 +18350,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:20 GMT + - Tue, 13 Jul 2021 15:47:43 GMT expires: - '-1' pragma: @@ -17301,7 +18366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' + - '68' x-powered-by: - ASP.NET status: @@ -17322,15 +18387,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17339,7 +18404,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:21 GMT + - Tue, 13 Jul 2021 15:47:44 GMT expires: - '-1' pragma: @@ -17355,7 +18420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' + - '67' x-powered-by: - ASP.NET status: @@ -17376,15 +18441,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17393,7 +18458,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:23 GMT + - Tue, 13 Jul 2021 15:47:45 GMT expires: - '-1' pragma: @@ -17409,7 +18474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' + - '66' x-powered-by: - ASP.NET status: @@ -17430,15 +18495,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17447,7 +18512,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:24 GMT + - Tue, 13 Jul 2021 15:47:47 GMT expires: - '-1' pragma: @@ -17463,7 +18528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' + - '65' x-powered-by: - ASP.NET status: @@ -17484,15 +18549,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17501,7 +18566,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:25 GMT + - Tue, 13 Jul 2021 15:47:48 GMT expires: - '-1' pragma: @@ -17517,7 +18582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' + - '64' x-powered-by: - ASP.NET status: @@ -17538,15 +18603,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17555,7 +18620,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:26 GMT + - Tue, 13 Jul 2021 15:47:49 GMT expires: - '-1' pragma: @@ -17571,7 +18636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' + - '63' x-powered-by: - ASP.NET status: @@ -17592,15 +18657,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"InProgress","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"InProgress","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17609,7 +18674,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:42:27 GMT + - Tue, 13 Jul 2021 15:47:50 GMT expires: - '-1' pragma: @@ -17625,7 +18690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' + - '62' x-powered-by: - ASP.NET status: @@ -17646,15 +18711,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e92cb11-55a2-40e7-a7bd-a5ae92d275cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/813b4d6a-da42-4073-8d1c-3544967e04be?api-version=2021-01-01 response: body: - string: '{"id":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","name":"5e92cb11-55a2-40e7-a7bd-a5ae92d275cb","status":"Succeeded","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"2021-06-21T12:40:50.2281947Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e44832ad-715d-4b7b-ae5a-dc8b6e82026e"}}' + string: '{"id":"813b4d6a-da42-4073-8d1c-3544967e04be","name":"813b4d6a-da42-4073-8d1c-3544967e04be","status":"Succeeded","startTime":"2021-07-13T15:45:59.6093056Z","endTime":"2021-07-13T15:45:59.6093056Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e7960137-34ad-47ab-9fae-80aae2609cad"}}' headers: cache-control: - no-cache @@ -17663,7 +18728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:47:54 GMT + - Tue, 13 Jul 2021 15:47:51 GMT expires: - '-1' pragma: @@ -17679,7 +18744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '61' x-powered-by: - ASP.NET status: @@ -17700,16 +18765,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e44832ad-715d-4b7b-ae5a-dc8b6e82026e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e7960137-34ad-47ab-9fae-80aae2609cad?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e44832ad-715d-4b7b-ae5a-dc8b6e82026e","name":"e44832ad-715d-4b7b-ae5a-dc8b6e82026e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.8485287S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:40:50.2281947Z","endTime":"2021-06-21T12:42:43.0767234Z","activityId":"e17f174c-d28d-11eb-b126-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e7960137-34ad-47ab-9fae-80aae2609cad","name":"e7960137-34ad-47ab-9fae-80aae2609cad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.7344519S","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-07-13T15:45:59.6093056Z","endTime":"2021-07-13T15:47:51.3437575Z","activityId":"695027b8-e3f1-11eb-831b-00155ddc6812"}}' headers: cache-control: - no-cache @@ -17718,7 +18783,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:47:54 GMT + - Tue, 13 Jul 2021 15:47:52 GMT expires: - '-1' pragma: @@ -17745,7 +18810,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -17757,9 +18822,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -17769,7 +18834,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:47:56 GMT + - Tue, 13 Jul 2021 15:47:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_encryption.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_encryption.yaml new file mode 100644 index 00000000000..ccff658b92a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_encryption.yaml @@ -0,0 +1,4628 @@ +interactions: +- 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 + ParameterSetName: + - -n -g --location + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A23%3A41.0605337Z''\"","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, 16 Jul 2021 05:23:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '208' + status: + code: 201 + message: Created +- 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 + ParameterSetName: + - -n -g --location + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A23%3A51.0006691Z''\"","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: + - '532' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:23:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -n -g --query + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-07-16T05:23:31Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:24:35 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"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007","name":"clitest-identity1000007","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"237261c6-0525-48aa-8d56-9374918aaa08","clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=237261c6-0525-48aa-8d56-9374918aaa08&aid=df017a7b-3ad6-4651-8d42-344ba90729c6"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:24:44 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007 + 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: + - identity show + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007","name":"clitest-identity1000007","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"237261c6-0525-48aa-8d56-9374918aaa08","clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=237261c6-0525-48aa-8d56-9374918aaa08&aid=df017a7b-3ad6-4651-8d42-344ba90729c6"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + 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: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -n -g --query + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-07-16T05:23:31Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:24: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: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008","name":"clitest-identity2000008","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=911f586b-7d9a-453f-ba45-dd1cfdf8e762&aid=97967d75-4942-48c6-a6cf-be0ca0f28282"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:24:55 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity show + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008","name":"clitest-identity2000008","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=911f586b-7d9a-453f-ba45-dd1cfdf8e762&aid=97967d75-4942-48c6-a6cf-be0ca0f28282"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:24:57 GMT + expires: + - '-1' + pragma: + - no-cache + 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 vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A23%3A41.0605337Z''\"","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, 16 Jul 2021 05:24: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "userassigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '586' + Content-Type: + - application/json + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:25:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '208' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=\",\r\n + \ \"name\": \"NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:26:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=\",\r\n + \ \"name\": \"NDA5NTszZWJmZDdiMy0yODU0LTRiZDItOGI2Ny0yNzlkOWNkZTM1MDE=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:27: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A26%3A07.8409701Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:27: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A26%3A07.8409701Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:27: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "systemassigned,userassigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '53' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:27:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=\",\r\n + \ \"name\": \"NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:28:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=\",\r\n + \ \"name\": \"NDA5NTtiYjAwZmEwMC1lZDhmLTQ2MmYtODA4MC01Yjk0OGU4ZWZiYjQ=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:29: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A28%3A20.2951156Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"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: + - '1427' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:29: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A23%3A51.0006691Z''\"","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: + - '532' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:29: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "userassigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '326' + Content-Type: + - application/json + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + 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/operationStatus/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:29:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=\",\r\n + \ \"name\": \"NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:30:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=\",\r\n + \ \"name\": \"NDA5NTs3ZmY0Zjk4MC05ZmRlLTRmOGEtODNjNS1mZjBlMGNmMzA5ODc=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:31: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A30%3A28.7654007Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"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: + - '1001' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:31: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A30%3A28.7654007Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"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: + - '1001' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:31: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "systemassigned,userassigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '53' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + 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/operationStatus/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:31:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=\",\r\n + \ \"name\": \"NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:32:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=\",\r\n + \ \"name\": \"NDA5NTs1N2Y2MDg3MS0xMjdlLTRhMjgtOGViYy05MWM2YjQxNWJkOWI=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:33: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A32%3A40.605105Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"60bb09e4-35a9-4893-b5a9-572c7399169b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"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: + - '1069' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:33: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault update + Connection: + - keep-alive + ParameterSetName: + - --name --enable-soft-delete --enable-purge-protection + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suanavlt/providers/Microsoft.KeyVault/vaults/suanaKV","name":"suanaKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.KeyVault/vaults/surraikeyvaultecy1","name":"surraikeyvaultecy1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.KeyVault/vaults/surraikeyvault1","name":"surraikeyvault1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/TestKVAdkayeth","name":"TestKVAdkayeth","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/adkayethKV","name":"adkayethKV","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/testsw100","name":"testsw100","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestkv500","name":"swtestkv500","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookalKV","name":"prnookalKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookal","name":"prnookal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.KeyVault/vaults/ashtestkeyvault","name":"ashtestkeyvault","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anampelly-srunnert-rg/providers/Microsoft.KeyVault/vaults/SrunnerResourcePFX-tst","name":"SrunnerResourcePFX-tst","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ProtScalePerfAI/providers/Microsoft.KeyVault/vaults/protscaleperfa5760484711","name":"protscaleperfa5760484711","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.KeyVault/vaults/testKV01234","name":"testKV01234","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{"Owner":"adbalaji","MAB + Used":"Yes","Purpose":"Testing","DeleteBy":"06-2021"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.KeyVault/vaults/DSMove-bvt-testKV","name":"DSMove-bvt-testKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test123/providers/Microsoft.KeyVault/vaults/test123vault456","name":"test123vault456","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestpgauth","name":"swtestpgauth","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{" + Owner":"swsachde","Purpose":" Testing","Delete By":"12-2022","MAB Used ":"Yes"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/PratikKV","name":"PratikKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhaskerkCCYRG/providers/Microsoft.KeyVault/vaults/bhaskerkOSSSecret","name":"bhaskerkOSSSecret","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal","name":"testvkatyal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-KV","name":"prnookal-KV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"Owner":"prnookal","isMABUsed + ":"yes","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy","name":"prnookal-ccy","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"MabUsed":"Yes","Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV","name":"jakavetKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV24","name":"jakavetKV24","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal-2","name":"testvkatyal-2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-t","name":"prnookal-ccy-t","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-i","name":"prnookal-ccy-i","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/ccysecretSGrvalec","name":"ccysecretSGrvalec","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"MAB + Used":" true"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7029' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:42 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: + - keyvault update + Connection: + - keep-alive + ParameterSetName: + - --name --enable-soft-delete --enable-purge-protection + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.041Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1379' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "8bf5ba20-c970-4c38-b2a6-95f5726c959a", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", + "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", + "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", + "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", + "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}], + "vaultUri": "https://clitest000004.vault.azure.net/", "enabledForDeployment": + false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": + true, "provisioningState": "Succeeded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault update + Connection: + - keep-alive + Content-Length: + - '966' + Content-Type: + - application/json + ParameterSetName: + - --name --enable-soft-delete --enable-purge-protection + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.625Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1408' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - 0 + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitest000004.vault.azure.net/keys/clitest-key1000005/create?api-version=7.0 + response: + body: + string: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing + a Bearer or PoP token."}}' + headers: + cache-control: + - no-cache + content-length: + - '97' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + www-authenticate: + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + resource="https://vault.azure.net" + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=223.230.122.94;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.12.0 + x-powered-by: + - ASP.NET + status: + code: 401 + message: Unauthorized +- request: + body: '{"kty": "RSA", "key_size": 2048, "key_ops": ["decrypt", "encrypt", "sign", + "unwrapKey", "verify", "wrapKey"], "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitest000004.vault.azure.net/keys/clitest-key1000005/create?api-version=7.0 + response: + body: + string: '{"key":{"kid":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","kty":"RSA","key_ops":["decrypt","encrypt","sign","unwrapKey","verify","wrapKey"],"n":"m-0MoTvnFmdZLEPPm-9UxoPz-BvD72ENYs8rnTcEBeXCWSDa5rOBndTxvViiHi8S8ig8LCTZklizffQzQWRWimO3ywuQB8EjAEpdNwaJ8jqnB_-dPbkFixGy-opd79Ax7yki-S0aOHUUN3q6NEn-r51GSArapIMR7kXxuVf1aXcvkVKiXS5N-YRjFwH_7g8qWT6mc40Y62iYTB7F_lnIouFzcx7GMF6cyvbgArPRZLg8E0DZQ21ZwkHIHDv-dlGTRolXQjR61f0e8jzv7r0iaXqmhv2ps_MtGJke-X1U111XxfA9gh3Wc3K46WDzGzedMePrhHyrsZitSA8UbWFslQ","e":"AQAB"},"attributes":{"enabled":true,"created":1626413629,"updated":1626413629,"recoveryLevel":"Recoverable"}}' + headers: + cache-control: + - no-cache + content-length: + - '669' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=223.230.122.94;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.12.0 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kty": "RSA", "key_size": 2048, "key_ops": ["decrypt", "encrypt", "sign", + "unwrapKey", "verify", "wrapKey"], "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitest000004.vault.azure.net/keys/clitest-key2000006/create?api-version=7.0 + response: + body: + string: '{"key":{"kid":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475","kty":"RSA","key_ops":["decrypt","encrypt","sign","unwrapKey","verify","wrapKey"],"n":"viHx9GqLa_gWbPYxF8iyRGKXbYdGoTHPtY7PO-bx6Ie7Ae5E7QBqlvscNGqqQ27oT_5D0knXqmd2PSeUJb3HNKch3jZweTNxvlHHCC9CWQui-a88QAeOA51YqGVKLVH0KNkPQem_4VyKi7T_-jM1ij4HQRzLYVBI7FjnAYxaqInDzplMqRdQHZiDzPm5Q7NHSpeR_B2BtgT8Fugk62scIt_oztUO95kyGlYB85RDUEcrxqb0DALw5-OJqItUTQTg3mjY0CWAhJNUBM-gh_SmNvbCvKNQUwgaGOpNoTlnASZMQbNKQr9VuiIE6lhCtAkrhBAOWxmXaFfOCj7USLlZLQ","e":"AQAB"},"attributes":{"enabled":true,"created":1626413630,"updated":1626413630,"recoveryLevel":"Recoverable"}}' + headers: + cache-control: + - no-cache + content-length: + - '669' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=223.230.122.94;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.12.0 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suanavlt/providers/Microsoft.KeyVault/vaults/suanaKV","name":"suanaKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.KeyVault/vaults/surraikeyvaultecy1","name":"surraikeyvaultecy1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.KeyVault/vaults/surraikeyvault1","name":"surraikeyvault1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/TestKVAdkayeth","name":"TestKVAdkayeth","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/adkayethKV","name":"adkayethKV","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/testsw100","name":"testsw100","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestkv500","name":"swtestkv500","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookalKV","name":"prnookalKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookal","name":"prnookal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.KeyVault/vaults/ashtestkeyvault","name":"ashtestkeyvault","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anampelly-srunnert-rg/providers/Microsoft.KeyVault/vaults/SrunnerResourcePFX-tst","name":"SrunnerResourcePFX-tst","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ProtScalePerfAI/providers/Microsoft.KeyVault/vaults/protscaleperfa5760484711","name":"protscaleperfa5760484711","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.KeyVault/vaults/testKV01234","name":"testKV01234","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{"Owner":"adbalaji","MAB + Used":"Yes","Purpose":"Testing","DeleteBy":"06-2021"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.KeyVault/vaults/DSMove-bvt-testKV","name":"DSMove-bvt-testKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test123/providers/Microsoft.KeyVault/vaults/test123vault456","name":"test123vault456","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestpgauth","name":"swtestpgauth","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{" + Owner":"swsachde","Purpose":" Testing","Delete By":"12-2022","MAB Used ":"Yes"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/PratikKV","name":"PratikKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhaskerkCCYRG/providers/Microsoft.KeyVault/vaults/bhaskerkOSSSecret","name":"bhaskerkOSSSecret","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal","name":"testvkatyal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-KV","name":"prnookal-KV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"Owner":"prnookal","isMABUsed + ":"yes","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy","name":"prnookal-ccy","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"MabUsed":"Yes","Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV","name":"jakavetKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV24","name":"jakavetKV24","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal-2","name":"testvkatyal-2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-t","name":"prnookal-ccy-t","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-i","name":"prnookal-ccy-i","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/ccysecretSGrvalec","name":"ccysecretSGrvalec","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"MAB + Used":" true"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7029' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:50 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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.625Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1408' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "8bf5ba20-c970-4c38-b2a6-95f5726c959a", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", + "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", + "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", + "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", + "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "237261c6-0525-48aa-8d56-9374918aaa08", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}], "vaultUri": + "https://clitest000004.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": + true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true, "provisioningState": + "Succeeded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + Content-Length: + - '1150' + Content-Type: + - application/json + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.632Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + 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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suanavlt/providers/Microsoft.KeyVault/vaults/suanaKV","name":"suanaKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.KeyVault/vaults/surraikeyvaultecy1","name":"surraikeyvaultecy1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.KeyVault/vaults/surraikeyvault1","name":"surraikeyvault1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/TestKVAdkayeth","name":"TestKVAdkayeth","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/adkayethKV","name":"adkayethKV","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/testsw100","name":"testsw100","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestkv500","name":"swtestkv500","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookalKV","name":"prnookalKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookal","name":"prnookal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.KeyVault/vaults/ashtestkeyvault","name":"ashtestkeyvault","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anampelly-srunnert-rg/providers/Microsoft.KeyVault/vaults/SrunnerResourcePFX-tst","name":"SrunnerResourcePFX-tst","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ProtScalePerfAI/providers/Microsoft.KeyVault/vaults/protscaleperfa5760484711","name":"protscaleperfa5760484711","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.KeyVault/vaults/testKV01234","name":"testKV01234","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{"Owner":"adbalaji","MAB + Used":"Yes","Purpose":"Testing","DeleteBy":"06-2021"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.KeyVault/vaults/DSMove-bvt-testKV","name":"DSMove-bvt-testKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test123/providers/Microsoft.KeyVault/vaults/test123vault456","name":"test123vault456","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestpgauth","name":"swtestpgauth","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{" + Owner":"swsachde","Purpose":" Testing","Delete By":"12-2022","MAB Used ":"Yes"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/PratikKV","name":"PratikKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhaskerkCCYRG/providers/Microsoft.KeyVault/vaults/bhaskerkOSSSecret","name":"bhaskerkOSSSecret","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal","name":"testvkatyal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-KV","name":"prnookal-KV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"Owner":"prnookal","isMABUsed + ":"yes","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy","name":"prnookal-ccy","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"MabUsed":"Yes","Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV","name":"jakavetKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV24","name":"jakavetKV24","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal-2","name":"testvkatyal-2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-t","name":"prnookal-ccy-t","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-i","name":"prnookal-ccy-i","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/ccysecretSGrvalec","name":"ccysecretSGrvalec","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"MAB + Used":" true"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7029' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:51 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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.632Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "8bf5ba20-c970-4c38-b2a6-95f5726c959a", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", + "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", + "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", + "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", + "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "237261c6-0525-48aa-8d56-9374918aaa08", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}, {"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "911f586b-7d9a-453f-ba45-dd1cfdf8e762", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}], "vaultUri": + "https://clitest000004.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": + true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true, "provisioningState": + "Succeeded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + Content-Length: + - '1322' + Content-Type: + - application/json + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.634Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + 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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suanavlt/providers/Microsoft.KeyVault/vaults/suanaKV","name":"suanaKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.KeyVault/vaults/surraikeyvaultecy1","name":"surraikeyvaultecy1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.KeyVault/vaults/surraikeyvault1","name":"surraikeyvault1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/TestKVAdkayeth","name":"TestKVAdkayeth","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/adkayethKV","name":"adkayethKV","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/testsw100","name":"testsw100","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestkv500","name":"swtestkv500","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookalKV","name":"prnookalKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookal","name":"prnookal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.KeyVault/vaults/ashtestkeyvault","name":"ashtestkeyvault","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anampelly-srunnert-rg/providers/Microsoft.KeyVault/vaults/SrunnerResourcePFX-tst","name":"SrunnerResourcePFX-tst","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ProtScalePerfAI/providers/Microsoft.KeyVault/vaults/protscaleperfa5760484711","name":"protscaleperfa5760484711","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.KeyVault/vaults/testKV01234","name":"testKV01234","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{"Owner":"adbalaji","MAB + Used":"Yes","Purpose":"Testing","DeleteBy":"06-2021"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.KeyVault/vaults/DSMove-bvt-testKV","name":"DSMove-bvt-testKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test123/providers/Microsoft.KeyVault/vaults/test123vault456","name":"test123vault456","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestpgauth","name":"swtestpgauth","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{" + Owner":"swsachde","Purpose":" Testing","Delete By":"12-2022","MAB Used ":"Yes"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/PratikKV","name":"PratikKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhaskerkCCYRG/providers/Microsoft.KeyVault/vaults/bhaskerkOSSSecret","name":"bhaskerkOSSSecret","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal","name":"testvkatyal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-KV","name":"prnookal-KV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"Owner":"prnookal","isMABUsed + ":"yes","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy","name":"prnookal-ccy","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"MabUsed":"Yes","Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV","name":"jakavetKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV24","name":"jakavetKV24","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal-2","name":"testvkatyal-2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-t","name":"prnookal-ccy-t","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-i","name":"prnookal-ccy-i","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/ccysecretSGrvalec","name":"ccysecretSGrvalec","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"MAB + Used":" true"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7029' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33:54 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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.634Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "8bf5ba20-c970-4c38-b2a6-95f5726c959a", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", + "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", + "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", + "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", + "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "237261c6-0525-48aa-8d56-9374918aaa08", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}, {"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "911f586b-7d9a-453f-ba45-dd1cfdf8e762", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}, {"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "4f309ff2-40a0-441b-a597-c1b5ff58f0ae", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}], "vaultUri": + "https://clitest000004.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": + true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true, "provisioningState": + "Succeeded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + Content-Length: + - '1494' + Content-Type: + - application/json + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.636Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1894' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + 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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suanavlt/providers/Microsoft.KeyVault/vaults/suanaKV","name":"suanaKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.KeyVault/vaults/surraikeyvaultecy1","name":"surraikeyvaultecy1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.KeyVault/vaults/surraikeyvault1","name":"surraikeyvault1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/TestKVAdkayeth","name":"TestKVAdkayeth","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.KeyVault/vaults/adkayethKV","name":"adkayethKV","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/testsw100","name":"testsw100","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestkv500","name":"swtestkv500","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookalKV","name":"prnookalKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/prnookal","name":"prnookal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.KeyVault/vaults/ashtestkeyvault","name":"ashtestkeyvault","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anampelly-srunnert-rg/providers/Microsoft.KeyVault/vaults/SrunnerResourcePFX-tst","name":"SrunnerResourcePFX-tst","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ProtScalePerfAI/providers/Microsoft.KeyVault/vaults/protscaleperfa5760484711","name":"protscaleperfa5760484711","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.KeyVault/vaults/testKV01234","name":"testKV01234","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{"Owner":"adbalaji","MAB + Used":"Yes","Purpose":"Testing","DeleteBy":"06-2021"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.KeyVault/vaults/DSMove-bvt-testKV","name":"DSMove-bvt-testKV","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test123/providers/Microsoft.KeyVault/vaults/test123vault456","name":"test123vault456","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.KeyVault/vaults/swtestpgauth","name":"swtestpgauth","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{" + Owner":"swsachde","Purpose":" Testing","Delete By":"12-2022","MAB Used ":"Yes"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.KeyVault/vaults/PratikKV","name":"PratikKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhaskerkCCYRG/providers/Microsoft.KeyVault/vaults/bhaskerkOSSSecret","name":"bhaskerkOSSSecret","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal","name":"testvkatyal","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-KV","name":"prnookal-KV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"Owner":"prnookal","isMABUsed + ":"yes","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy","name":"prnookal-ccy","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"MabUsed":"Yes","Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV","name":"jakavetKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/jakavetKV24","name":"jakavetKV24","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.KeyVault/vaults/testvkatyal-2","name":"testvkatyal-2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-t","name":"prnookal-ccy-t","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.KeyVault/vaults/prnookal-ccy-i","name":"prnookal-ccy-i","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"isMABUsed":" + Yes"," Owner":"prnookal","Purpose":"runners"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.KeyVault/vaults/ccysecretSGrvalec","name":"ccysecretSGrvalec","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{"MAB + Used":" true"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7029' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33: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: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.636Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1894' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "8bf5ba20-c970-4c38-b2a6-95f5726c959a", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", + "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", + "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", + "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", + "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "237261c6-0525-48aa-8d56-9374918aaa08", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}, {"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "911f586b-7d9a-453f-ba45-dd1cfdf8e762", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}, {"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "4f309ff2-40a0-441b-a597-c1b5ff58f0ae", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}, {"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "60bb09e4-35a9-4893-b5a9-572c7399169b", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get", "list"]}}], "vaultUri": + "https://clitest000004.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": + true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true, "provisioningState": + "Succeeded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + Content-Length: + - '1666' + Content-Type: + - application/json + ParameterSetName: + - --name --object-id --key-permissions + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-keyvault/9.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004?api-version=2021-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000004","name":"clitest000004","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"hiaga@microsoft.com","createdByType":"User","createdAt":"1970-01-19T19:46:53.041Z","lastModifiedBy":"hiaga@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"1970-01-19T19:46:53.639Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"237261c6-0525-48aa-8d56-9374918aaa08","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"60bb09e4-35a9-4893-b5a9-572c7399169b","permissions":{"keys":["unwrapKey","wrapKey","get","list"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000004.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2056' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:33: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.23.5 + 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 vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A28%3A20.2951156Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"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: + - '1427' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"encryption": {"keyVaultProperties": {"keyUri": "https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"}, + "kekIdentity": {"userAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007"}, + "infrastructureEncryption": "Disabled"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + Content-Length: + - '514' + Content-Type: + - application/json + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05: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/operationResults/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=\",\r\n + \ \"name\": \"NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:35:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=\",\r\n + \ \"name\": \"NDA5NTszNmRlMWU1MS00ZGY2LTQzYzEtYWI0Yi1kNzdkNTM1MGNmM2Y=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:36: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A35%3A05.7573723Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007"},"infrastructureEncryption":"Disabled"}},"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: + - '1950' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:36: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 vault encryption show + Connection: + - keep-alive + ParameterSetName: + - -v -g + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007","useSystemAssignedIdentity":false,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '963' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:36: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 vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A35%3A05.7573723Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007"},"infrastructureEncryption":"Disabled"}},"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: + - '1950' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:36: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007","useSystemAssignedIdentity":false,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '963' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:36: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: '{"properties": {"encryption": {"keyVaultProperties": {"keyUri": "https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"}, + "kekIdentity": {"userAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + Content-Length: + - '474' + Content-Type: + - application/json + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:36:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=\",\r\n + \ \"name\": \"NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:37:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=\",\r\n + \ \"name\": \"NDA5NTswOGFmNWY5YS0wOWFkLTQ1YWMtOGQ5ZS00ZWNkZGU2OTUwODM=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:38: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A37%3A14.333321Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008"},"infrastructureEncryption":"Disabled"}},"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: + - '1949' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:38: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption show + Connection: + - keep-alive + ParameterSetName: + - -v -g + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008","useSystemAssignedIdentity":false,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '963' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:38: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: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A37%3A14.333321Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008"},"infrastructureEncryption":"Disabled"}},"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: + - '1949' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:38: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008","useSystemAssignedIdentity":false,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '963' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:38: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: '{"properties": {"encryption": {"keyVaultProperties": {"keyUri": "https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475"}, + "kekIdentity": {"useSystemAssignedIdentity": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + Content-Length: + - '229' + Content-Type: + - application/json + ParameterSetName: + - --encryption-key-id --mi-system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:38:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '208' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=\",\r\n + \ \"name\": \"NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:39:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=\",\r\n + \ \"name\": \"NDA5NTs4NTNjOTAxNi03OTIwLTRmODktYWRlYi1iODJhY2JmYjQ1ZmI=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:40: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A39%3A21.6928269Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"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: + - '1699' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:40: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption show + Connection: + - keep-alive + ParameterSetName: + - -v -g + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:40:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A39%3A21.6928269Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"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: + - '1699' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:40: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:40: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: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"encryption": {"keyVaultProperties": {"keyUri": "https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + Content-Length: + - '177' + Content-Type: + - application/json + ParameterSetName: + - --encryption-key-id -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:40:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '208' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=\",\r\n + \ \"name\": \"NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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/operationResults/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=\",\r\n + \ \"name\": \"NDA5NTs5ZDcwNTkxZS1kZmM0LTRkOGQtODc5OC1jMzkzYjQyY2YyZjg=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:42: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A41%3A31.3729995Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"4f309ff2-40a0-441b-a597-c1b5ff58f0ae","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2000008":{"clientId":"97967d75-4942-48c6-a6cf-be0ca0f28282","objectId":"911f586b-7d9a-453f-ba45-dd1cfdf8e762"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"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: + - '1699' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:42: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption show + Connection: + - keep-alive + ParameterSetName: + - -v -g + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:42: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 vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned --infrastructure-encryption -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A32%3A40.605105Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"60bb09e4-35a9-4893-b5a9-572c7399169b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"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: + - '1069' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:42: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned --infrastructure-encryption -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:42: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: '{"properties": {"encryption": {"keyVaultProperties": {"keyUri": "https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475"}, + "kekIdentity": {"useSystemAssignedIdentity": true}, "infrastructureEncryption": + "Enabled"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + Content-Length: + - '268' + Content-Type: + - application/json + ParameterSetName: + - --encryption-key-id --mi-system-assigned --infrastructure-encryption -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + 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/operationStatus/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:42:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned --infrastructure-encryption -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=\",\r\n + \ \"name\": \"NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:43:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned --infrastructure-encryption -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=\",\r\n + \ \"name\": \"NDA5NTtiOTU3MGVlYS1iMjkyLTQzNmUtOTQ5Yy02MWY5ZGExMDMzZGM=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:44:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-system-assigned --infrastructure-encryption -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A43%3A42.540239Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"60bb09e4-35a9-4893-b5a9-572c7399169b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Enabled"}},"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: + - '1340' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:44:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption show + Connection: + - keep-alive + ParameterSetName: + - -v -g + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:44:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A43%3A42.540239Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"60bb09e4-35a9-4893-b5a9-572c7399169b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Enabled"}},"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: + - '1340' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:44:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key2000006/ffa3e3bb3a6d4f3b94d915b737bca475","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:44:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"encryption": {"keyVaultProperties": {"keyUri": "https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"}, + "kekIdentity": {"userAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + Content-Length: + - '474' + Content-Type: + - application/json + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + 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/operationStatus/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:44:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=\",\r\n + \ \"name\": \"NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:45:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=\",\r\n + \ \"name\": \"NDA5NTtlZTdlY2I0ZC0yYWJjLTRhMTMtYmI0Mi1kZDc1MzI1NTllOWY=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:46: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption update + Connection: + - keep-alive + ParameterSetName: + - --encryption-key-id --mi-user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-16T05%3A45%3A51.2026812Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"60bb09e4-35a9-4893-b5a9-572c7399169b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007":{"clientId":"df017a7b-3ad6-4651-8d42-344ba90729c6","objectId":"237261c6-0525-48aa-8d56-9374918aaa08"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007"},"infrastructureEncryption":"Enabled"}},"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: + - '1592' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:46: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault encryption show + Connection: + - keep-alive + ParameterSetName: + - -v -g + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1000007","useSystemAssignedIdentity":false,"encryptionAtRestType":"CustomerManaged","keyUri":"https://clitest000004.vault.azure.net/keys/clitest-key1000005/15153bcb25314e7bbf0c1bb1443a7204","subscriptionId":"","lastUpdateStatus":"Succeeded","infrastructureEncryptionState":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '962' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:46: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: + - '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: + - --backup-management-type -v -g --query + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:46: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 vault delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:46:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' + status: + code: 200 + message: OK +- 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: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:47: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 vault delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:47: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: + - '9' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_identity.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_identity.yaml new file mode 100644 index 00000000000..5e69eccd62e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_identity.yaml @@ -0,0 +1,2362 @@ +interactions: +- 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 + ParameterSetName: + - -n -g --location + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A20%3A30.1874217Z''\"","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, 16 Jul 2021 05:20:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -n -g --query + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-07-16T05:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:20:31 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"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003","name":"clitest-identity000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4","clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=bb99a529-fb6b-484a-bfa5-fec928f13ea4&aid=2205c561-de63-4d8b-81b9-2a9c191ad34b"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:20:44 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003 + 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: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -n -g --query + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-07-16T05:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:20:44 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"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004","name":"clitest-identity000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7","clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7&aid=b4a3b1e9-4022-4762-ab66-1ecc9978467d"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:20:53 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004 + 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: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -n -g --query + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-07-16T05:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:20: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: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005","name":"clitest-identity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e","clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=7d19514f-57dd-44e8-9a35-1a6a2fe9c62e&aid=861a522c-e20d-42a6-8acf-fb1e65ff5958"}}' + headers: + cache-control: + - no-cache + content-length: + - '1026' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jul 2021 05:21:01 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005 + 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: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A20%3A30.1874217Z''\"","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, 16 Jul 2021 05:21: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "userassigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '586' + Content-Type: + - application/json + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:21:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=\",\r\n + \ \"name\": \"NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:22:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=\",\r\n + \ \"name\": \"NDA5NTthOTU5YTNkZS03YWVmLTRiMjUtODFiYy01OGRiNTkxZWI2YjY=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:23: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A22%3A13.2904821Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:23: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A22%3A13.2904821Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:23: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: '{"identity": {"type": "systemassigned,userassigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '53' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:23:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=\",\r\n + \ \"name\": \"NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:24:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=\",\r\n + \ \"name\": \"NDA5NTs5MjAxZmEwZC1iZDc2LTQ0NjYtYmU2NS05Nzk0ODQ4NDIwZGU=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:25: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A24%3A24.3646361Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9bf487bf-cc21-478f-9f5c-afc5fd833910","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1427' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:25: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A24%3A24.3646361Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9bf487bf-cc21-478f-9f5c-afc5fd833910","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1427' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:25: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "systemassigned,userassigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '341' + Content-Type: + - application/json + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:25:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=\",\r\n + \ \"name\": \"NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:26:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=\",\r\n + \ \"name\": \"NDA5NTtmNDNjMDFiMi1iMTgzLTQyMjMtODg5OS1jMmEzNzFmYjQxNjE=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:27: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A26%3A30.0369119Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9bf487bf-cc21-478f-9f5c-afc5fd833910","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005":{"clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","objectId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e"}}},"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: + - '1784' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:27: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 vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A26%3A30.0369119Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9bf487bf-cc21-478f-9f5c-afc5fd833910","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005":{"clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","objectId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e"}}},"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: + - '1784' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "userassigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003": + null}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + Content-Length: + - '328' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:27:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=\",\r\n + \ \"name\": \"NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:28:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=\",\r\n + \ \"name\": \"NDA5NTszMDljNzZmZC01MmRkLTQxYmQtOTRiZS1kZDgyOWY4YjUzZWM=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A28%3A42.3409492Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005":{"clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","objectId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A28%3A42.3409492Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005":{"clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","objectId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:29: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: '{"identity": {"type": "systemassigned,userassigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '341' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:29:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '207' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=\",\r\n + \ \"name\": \"NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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/operationResults/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=\",\r\n + \ \"name\": \"NDA5NTtlZGJlMjAyNi1lYWIwLTQ5ODQtODBjMC1mY2MxMzllMDUyZWY=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:31: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: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A30%3A53.3790841Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b8e11a08-3d3c-4900-931b-e6d5c9c024d3","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005":{"clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","objectId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"}}},"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: + - '1784' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:31: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A30%3A53.3790841Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b8e11a08-3d3c-4900-931b-e6d5c9c024d3","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000005":{"clientId":"861a522c-e20d-42a6-8acf-fb1e65ff5958","objectId":"7d19514f-57dd-44e8-9a35-1a6a2fe9c62e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"}}},"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: + - '1784' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:31: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: '{"identity": {"type": "none"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A32%3A01.3409033Z''\"","identity":{"type":"None"},"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: + - '559' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:32: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: + - '209' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A32%3A01.3409033Z''\"","identity":{"type":"None"},"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: + - '559' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:32: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "systemassigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '40' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A32%3A17.084212Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b04c6bc7-94db-425f-9747-933808c1e39d","type":"SystemAssigned"},"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: + - '671' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:32: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: + - '208' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A32%3A17.084212Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b04c6bc7-94db-425f-9747-933808c1e39d","type":"SystemAssigned"},"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: + - '671' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:32: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "systemassigned,userassigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + Content-Length: + - '601' + Content-Type: + - application/json + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05: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/operationResults/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=\",\r\n + \ \"name\": \"NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=\",\r\n + \ \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05: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/operationResults/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=\",\r\n + \ \"name\": \"NDA5NTtjMGZiNTk2OC1lOThjLTQ0YmMtODUwYS0xYTZlMTRmNWU1MTg=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:34: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity assign + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A33%3A47.6692787Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b04c6bc7-94db-425f-9747-933808c1e39d","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1427' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:34: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A33%3A47.6692787Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b04c6bc7-94db-425f-9747-933808c1e39d","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1427' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:34: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: '{"identity": {"type": "userassigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + Content-Length: + - '38' + Content-Type: + - application/json + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjYjY5YjNkNS1lN2EzLTRlYTMtYmNmMi01MjUyMjhjOTQ5YTQ=?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05: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/operationResults/NDA5NTtjYjY5YjNkNS1lN2EzLTRlYTMtYmNmMi01MjUyMjhjOTQ5YTQ=?api-version=2021-03-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjYjY5YjNkNS1lN2EzLTRlYTMtYmNmMi01MjUyMjhjOTQ5YTQ=?api-version=2021-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTtjYjY5YjNkNS1lN2EzLTRlYTMtYmNmMi01MjUyMjhjOTQ5YTQ=\",\r\n + \ \"name\": \"NDA5NTtjYjY5YjNkNS1lN2EzLTRlYTMtYmNmMi01MjUyMjhjOTQ5YTQ=\",\r\n + \ \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '424' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:35: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --system-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A34%3A35.5276568Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:35: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A34%3A35.5276568Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000003":{"clientId":"2205c561-de63-4d8b-81b9-2a9c191ad34b","objectId":"bb99a529-fb6b-484a-bfa5-fec928f13ea4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity000004":{"clientId":"b4a3b1e9-4022-4762-ab66-1ecc9978467d","objectId":"f517a977-eda7-4c5e-a8d8-2c6a9fdbeee7"}}},"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: + - '1358' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:35: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 + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "none"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault identity remove + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --user-assigned -g -v + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-16T05%3A35%3A42.9981289Z''\"","identity":{"type":"None"},"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: + - '559' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:35: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: + - '209' + 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: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservicesbackup/1.0.0 Python/3.7.9 + (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Fri, 16 Jul 2021 05:35: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 vault delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/1.0.0b1 Python/3.7.9 (Windows-10-10.0.18362-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 16 Jul 2021 05:35:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_item.yaml index 0482d776821..1727092cc91 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A48%3A03.7219516Z''\"","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-07-13T09%3A15%3A11.9145954Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:48:03 GMT + - Tue, 13 Jul 2021 09:15:11 GMT expires: - '-1' pragma: @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:48:03 GMT + - Tue, 13 Jul 2021 09:15:12 GMT expires: - '-1' pragma: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:48:04 GMT + - Tue, 13 Jul 2021 09:15:13 GMT expires: - '-1' pragma: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T12:47: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-07-13T09:15:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:48:04 GMT + - Tue, 13 Jul 2021 09:15:15 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 12:48:05 GMT + - Tue, 13 Jul 2021 09:15:15 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 12:53:05 GMT + - Tue, 13 Jul 2021 09:20:15 GMT source-age: - - '66' + - '207' strict-transport-security: - max-age=31536000 vary: @@ -285,15 +286,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 09d76097eecc3a232ed1a3288e773d677f1cdd43 + - d88649ad2dfbc54c4a654185f34911d4f9d7453d x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1227-QPG + - cache-qpg1255-QPG x-timer: - - S1624279686.752312,VS0,VE1 + - S1626167716.593360,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:48:05 GMT + - Tue, 13 Jul 2021 09:15:15 GMT expires: - '-1' pragma: @@ -395,23 +396,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_FFHip0ZdXr5YHC2dCmu5j7Tl2hcIKmrl","name":"vm_deploy_FFHip0ZdXr5YHC2dCmu5j7Tl2hcIKmrl","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10808980714255561245","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T12:48:07.4185992Z","duration":"PT0.8715549S","correlationId":"64cad800-fdfc-4c47-84c2-7f9561dac362","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_KPT43zTQxXOkHOIP1QXNNs7AreSVdLn7","name":"vm_deploy_KPT43zTQxXOkHOIP1QXNNs7AreSVdLn7","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11404629778935729835","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T09:15:17.801982Z","duration":"PT0.9932433S","correlationId":"abad2e5f-a692-4c19-b36a-69c22afb8872","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_FFHip0ZdXr5YHC2dCmu5j7Tl2hcIKmrl/operationStatuses/08585773271989305860?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_KPT43zTQxXOkHOIP1QXNNs7AreSVdLn7/operationStatuses/08585754391686688919?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2961' + - '2960' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:48:07 GMT + - Tue, 13 Jul 2021 09:15:17 GMT expires: - '-1' pragma: @@ -421,7 +422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -439,9 +440,93 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754391686688919?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: + - Tue, 13 Jul 2021 09:15:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754391686688919?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: + - Tue, 13 Jul 2021 09:16:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773271989305860?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/08585754391686688919?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:48:37 GMT + - Tue, 13 Jul 2021 09:16:48 GMT expires: - '-1' pragma: @@ -481,9 +566,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773271989305860?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/08585754391686688919?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:07 GMT + - Tue, 13 Jul 2021 09:17:18 GMT expires: - '-1' pragma: @@ -523,21 +608,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FFHip0ZdXr5YHC2dCmu5j7Tl2hcIKmrl","name":"vm_deploy_FFHip0ZdXr5YHC2dCmu5j7Tl2hcIKmrl","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10808980714255561245","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T12:48:57.2402532Z","duration":"PT50.6932089S","correlationId":"64cad800-fdfc-4c47-84c2-7f9561dac362","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_KPT43zTQxXOkHOIP1QXNNs7AreSVdLn7","name":"vm_deploy_KPT43zTQxXOkHOIP1QXNNs7AreSVdLn7","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11404629778935729835","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T09:16:50.2006757Z","duration":"PT1M33.391937S","correlationId":"abad2e5f-a692-4c19-b36a-69c22afb8872","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' + - '4087' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:07 GMT + - Tue, 13 Jul 2021 09:17:18 GMT expires: - '-1' pragma: @@ -565,7 +650,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -574,16 +659,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\": \"0a6d70fc-1f37-4675-8163-adeca5dfc1e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"98658ee1-19d3-457a-a7f3-286e335e3128\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_e1382bab454a48eb9e067e8baf6c758b\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_5f73820918e44ac7a30e1a9454aa27af\",\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_e1382bab454a48eb9e067e8baf6c758b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_5f73820918e44ac7a30e1a9454aa27af\"\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\": @@ -597,16 +682,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\": \"2021-06-21T12:49:08+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T09:17:19+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_e1382bab454a48eb9e067e8baf6c758b\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_5f73820918e44ac7a30e1a9454aa27af\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T12:48:33.4258424+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T09:15:34.4422912+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T12:48:55.8790555+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T09:16:49.1765018+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}" @@ -614,11 +699,11 @@ interactions: cache-control: - no-cache content-length: - - '3464' + - '3473' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:08 GMT + - Tue, 13 Jul 2021 09:17:19 GMT expires: - '-1' pragma: @@ -635,7 +720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31970 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31961 status: code: 200 message: OK @@ -653,20 +738,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"dfc4eb6b-4027-4d5c-977d-9f0cb419c54b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4ed346fd-495e-4b46-9837-f3300b483518\\\"\",\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\": \"f9eab9ce-a26d-49c5-b6ea-dd19358f7130\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"e3d40cd2-e3c3-4d3c-a82c-49f596a0277c\",\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/\\\"dfc4eb6b-4027-4d5c-977d-9f0cb419c54b\\\"\",\r\n + \ \"etag\": \"W/\\\"4ed346fd-495e-4b46-9837-f3300b483518\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +760,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\": - \"xhxxe2qdspbu1m2ga23k1eue3f.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-A1-6E-4B\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"f3ps3dphwmvullyx0kj22zp5zd.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-A0-6E-C3\",\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\": @@ -690,9 +775,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:08 GMT + - Tue, 13 Jul 2021 09:17:18 GMT etag: - - W/"dfc4eb6b-4027-4d5c-977d-9f0cb419c54b" + - W/"4ed346fd-495e-4b46-9837-f3300b483518" expires: - '-1' pragma: @@ -709,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0076c12a-0c2d-4932-96bc-f300de6548a5 + - d200c872-1ddc-4e7f-a8dd-29142005460c status: code: 200 message: OK @@ -727,19 +812,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"b52ca23e-7bd3-4803-b9d8-7b085a1d787b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"19868288-b22f-40ec-bf18-3708051a65f6\\\"\",\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\": \"8a4ecf53-388c-487f-96bc-cec90de0ac14\",\r\n - \ \"ipAddress\": \"20.205.224.112\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"29160c7b-bd6e-4d69-bd40-9c8fcfe6fb07\",\r\n + \ \"ipAddress\": \"52.230.33.203\",\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}" @@ -747,13 +832,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:09 GMT + - Tue, 13 Jul 2021 09:17:18 GMT etag: - - W/"b52ca23e-7bd3-4803-b9d8-7b085a1d787b" + - W/"19868288-b22f-40ec-bf18-3708051a65f6" expires: - '-1' pragma: @@ -770,7 +855,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63c3100a-d62c-40a5-92f7-3693557ddd7b + - 67cb542c-c89a-4a4e-92a9-9c86f8f1ce31 status: code: 200 message: OK @@ -788,12 +873,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T12:47: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-07-13T09:15:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -802,7 +887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:08 GMT + - Tue, 13 Jul 2021 09:17:19 GMT expires: - '-1' pragma: @@ -837,34 +922,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -875,19 +961,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:09 GMT + - Tue, 13 Jul 2021 09:17:20 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 12:54:09 GMT + - Tue, 13 Jul 2021 09:22:20 GMT source-age: - - '130' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -901,15 +987,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 94971388c2f5eb197c97fb273517dfc2675daa7f + - 368dfc3152014ca426ec3e752856a6d064fe3541 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - cache-qpg1237-QPG x-timer: - - S1624279750.934724,VS0,VE0 + - S1626167840.339513,VS0,VE215 x-xss-protection: - 1; mode=block status: @@ -929,24 +1015,24 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"c6679a88-8bd8-4f95-a943-06ab1afc175e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ebb768d8-ee3c-46ba-a3c7-5e9092f0c4c5\\\"\",\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\": - \"7272efb9-9303-4dc3-b386-073aad9284ed\",\r\n \"addressSpace\": {\r\n + \"8d2e5f2f-b3e7-452b-af17-d293ce65ffcb\",\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/\\\"c6679a88-8bd8-4f95-a943-06ab1afc175e\\\"\",\r\n + \ \"etag\": \"W/\\\"ebb768d8-ee3c-46ba-a3c7-5e9092f0c4c5\\\"\",\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 @@ -962,7 +1048,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:09 GMT + - Tue, 13 Jul 2021 09:17:20 GMT expires: - '-1' pragma: @@ -979,7 +1065,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11f4b025-87e4-4e42-b3d3-eb69055c6ac6 + - d65f0bc4-6807-4567-b2fc-95294980d5d2 status: code: 200 message: OK @@ -1031,15 +1117,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_b6QEoeQ4Xl1r2VRQ3R7Yrwmn8tnvntOx","name":"vm_deploy_b6QEoeQ4Xl1r2VRQ3R7Yrwmn8tnvntOx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15710092402021903857","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T12:49:11.702133Z","duration":"PT0.9312487S","correlationId":"9a9b8da9-5b9b-4dfb-b4d8-3db4f45cc365","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_4Gl5w2PzNf16nvNcd2z54TsqceHuR0Bw","name":"vm_deploy_4Gl5w2PzNf16nvNcd2z54TsqceHuR0Bw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17424341845549868356","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T09:17:22.377531Z","duration":"PT0.8781817S","correlationId":"8e6f5d9e-d135-4910-b416-0af91ed862d8","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_b6QEoeQ4Xl1r2VRQ3R7Yrwmn8tnvntOx/operationStatuses/08585773271347067503?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_4Gl5w2PzNf16nvNcd2z54TsqceHuR0Bw/operationStatuses/08585754390439782820?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -1047,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:11 GMT + - Tue, 13 Jul 2021 09:17:22 GMT expires: - '-1' pragma: @@ -1057,7 +1143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -1075,9 +1161,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773271347067503?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/08585754390439782820?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1089,7 +1175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:49:41 GMT + - Tue, 13 Jul 2021 09:17:52 GMT expires: - '-1' pragma: @@ -1117,9 +1203,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773271347067503?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/08585754390439782820?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1131,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:50:12 GMT + - Tue, 13 Jul 2021 09:18:22 GMT expires: - '-1' pragma: @@ -1159,9 +1245,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773271347067503?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/08585754390439782820?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1173,7 +1259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:50:41 GMT + - Tue, 13 Jul 2021 09:18:52 GMT expires: - '-1' pragma: @@ -1201,9 +1287,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773271347067503?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/08585754390439782820?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1215,7 +1301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:51:12 GMT + - Tue, 13 Jul 2021 09:19:23 GMT expires: - '-1' pragma: @@ -1243,21 +1329,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_b6QEoeQ4Xl1r2VRQ3R7Yrwmn8tnvntOx","name":"vm_deploy_b6QEoeQ4Xl1r2VRQ3R7Yrwmn8tnvntOx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15710092402021903857","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T12:50:50.8918696Z","duration":"PT1M40.1209853S","correlationId":"9a9b8da9-5b9b-4dfb-b4d8-3db4f45cc365","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_4Gl5w2PzNf16nvNcd2z54TsqceHuR0Bw","name":"vm_deploy_4Gl5w2PzNf16nvNcd2z54TsqceHuR0Bw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17424341845549868356","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T09:19:09.043273Z","duration":"PT1M47.5439237S","correlationId":"8e6f5d9e-d135-4910-b416-0af91ed862d8","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: - - '3503' + - '3502' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:51:12 GMT + - Tue, 13 Jul 2021 09:19:23 GMT expires: - '-1' pragma: @@ -1285,7 +1371,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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=2021-03-01 response: @@ -1294,16 +1380,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\": \"ffdfbd9e-679d-4273-bcb6-29ce49ce6c8a\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"fcf25b64-9a2c-4f1d-8f72-12d2faeceed7\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_038b1fd661d5491c9e1ac12f90dc5284\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_322323380d3c4aa6a540ea12a3241f20\",\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_038b1fd661d5491c9e1ac12f90dc5284\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_322323380d3c4aa6a540ea12a3241f20\"\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\": @@ -1317,16 +1403,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\": \"2021-06-21T12:51:13+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T09:19:24+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_OsDisk_1_038b1fd661d5491c9e1ac12f90dc5284\",\r\n \"statuses\": + \"clitest-vm000004_OsDisk_1_322323380d3c4aa6a540ea12a3241f20\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T12:49:40.0039675+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T09:17:43.5980722+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T12:50:48.3008552+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T09:19:07.113325+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}" @@ -1334,11 +1420,11 @@ interactions: cache-control: - no-cache content-length: - - '3473' + - '3472' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:51:12 GMT + - Tue, 13 Jul 2021 09:19:23 GMT expires: - '-1' pragma: @@ -1355,7 +1441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31964 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31958 status: code: 200 message: OK @@ -1373,20 +1459,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"5d7096f7-579c-48a3-a7f2-c63670d9aae3\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d18d5a88-bf97-49b2-aa3a-35a375e30f3e\\\"\",\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\": \"fdd3b43a-212c-4bf6-be09-41a85c24dde8\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"a79bc981-b378-4933-94c6-29f5fb8d2576\",\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/\\\"5d7096f7-579c-48a3-a7f2-c63670d9aae3\\\"\",\r\n + \ \"etag\": \"W/\\\"d18d5a88-bf97-49b2-aa3a-35a375e30f3e\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -1395,8 +1481,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\": - \"xhxxe2qdspbu1m2ga23k1eue3f.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-A1-80-10\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"f3ps3dphwmvullyx0kj22zp5zd.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-A0-69-AC\",\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\": @@ -1410,9 +1496,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:51:12 GMT + - Tue, 13 Jul 2021 09:19:23 GMT etag: - - W/"5d7096f7-579c-48a3-a7f2-c63670d9aae3" + - W/"d18d5a88-bf97-49b2-aa3a-35a375e30f3e" expires: - '-1' pragma: @@ -1429,7 +1515,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79210971-944b-4bc6-b2db-553e37eda7a7 + - e8c0f772-0ae7-4f7d-bd81-34330657680d status: code: 200 message: OK @@ -1447,18 +1533,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"45a3d2f8-13ac-4f72-bc4b-f3dc91597833\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d5a01054-28f2-4ba0-b672-0d1d3423acf2\\\"\",\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\": \"ac0f5699-7c22-4ae8-85a1-0cb52a95d0bd\",\r\n - \ \"ipAddress\": \"20.205.227.117\",\r\n \"publicIPAddressVersion\": + \"Succeeded\",\r\n \"resourceGuid\": \"09a20085-b44c-43ba-979c-a92bde9301f2\",\r\n + \ \"ipAddress\": \"52.139.198.195\",\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 @@ -1471,9 +1557,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:51:12 GMT + - Tue, 13 Jul 2021 09:19:23 GMT etag: - - W/"45a3d2f8-13ac-4f72-bc4b-f3dc91597833" + - W/"d5a01054-28f2-4ba0-b672-0d1d3423acf2" expires: - '-1' pragma: @@ -1490,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b66658b8-6cd9-4f0c-8359-ddb7d2c7d342 + - ca926d99-a42c-44b3-a44d-b0cd44f7a816 status: code: 200 message: OK @@ -1508,7 +1594,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -1517,16 +1603,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\": \"0a6d70fc-1f37-4675-8163-adeca5dfc1e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"98658ee1-19d3-457a-a7f3-286e335e3128\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_e1382bab454a48eb9e067e8baf6c758b\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_5f73820918e44ac7a30e1a9454aa27af\",\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_e1382bab454a48eb9e067e8baf6c758b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_5f73820918e44ac7a30e1a9454aa27af\"\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\": @@ -1540,11 +1626,11 @@ interactions: cache-control: - no-cache content-length: - - '2249' + - '2255' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:51:12 GMT + - Tue, 13 Jul 2021 09:19:24 GMT expires: - '-1' pragma: @@ -1561,7 +1647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31963 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31957 status: code: 200 message: OK @@ -1579,12 +1665,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A48%3A03.7219516Z''\"","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-07-13T09%3A15%3A11.9145954Z''\"","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 @@ -1593,7 +1679,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:14 GMT + - Tue, 13 Jul 2021 09:19:24 GMT expires: - '-1' pragma: @@ -1625,15 +1711,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22: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-07-13T19:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T19:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1642,7 +1728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:14 GMT + - Tue, 13 Jul 2021 09:19:25 GMT expires: - '-1' pragma: @@ -1658,7 +1744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -1678,24 +1764,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitest-vmah3ld/protectableItems/vm;iaasvmcontainerv2;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitest-vmah3ld","name":"iaasvmcontainerv2;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitest-vmah3ld","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Compute/virtualMachines/clitest-vmah3ld","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmah3ld","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '3231' content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:15 GMT + - Tue, 13 Jul 2021 09:19:25 GMT expires: - '-1' pragma: @@ -1711,7 +1797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -1733,8 +1819,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -1744,17 +1830,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/37c5d9a4-626e-4374-af6d-1c704346f2f1?api-version=2019-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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:51:16 GMT + - Tue, 13 Jul 2021 09:19:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/37c5d9a4-626e-4374-af6d-1c704346f2f1?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1762,7 +1848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1782,12 +1868,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/37c5d9a4-626e-4374-af6d-1c704346f2f1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: string: '' @@ -1797,11 +1883,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:51:15 GMT + - Tue, 13 Jul 2021 09:19: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/37c5d9a4-626e-4374-af6d-1c704346f2f1?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1829,22 +1915,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/37c5d9a4-626e-4374-af6d-1c704346f2f1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Mon, 21 Jun 2021 12:51:28 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1856,8 +1946,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -1872,49 +1962,41 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;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;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '8271' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:28 GMT + - Tue, 13 Jul 2021 09:19:30 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' 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 @@ -1924,43 +2006,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + 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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:51:29 GMT + - Tue, 13 Jul 2021 09:19: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/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -1980,45 +2056,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:29 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2033,45 +2103,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:30 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2086,45 +2150,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:31 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2139,45 +2197,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:32 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2192,45 +2244,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:34 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2245,45 +2291,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:35 GMT + - Tue, 13 Jul 2021 09:19: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/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2298,45 +2338,35 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a09c1b66-9b9d-4b14-b056-9a4bb4a731ff?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' - content-type: - - application/json date: - - Mon, 21 Jun 2021 12:51:36 GMT + - Tue, 13 Jul 2021 09:19: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: - - '107' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -2351,24 +2381,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","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.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;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '5751' content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:37 GMT + - Tue, 13 Jul 2021 09:19:39 GMT expires: - '-1' pragma: @@ -2384,14 +2414,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '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 @@ -2401,48 +2433,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:51:38 GMT + - Tue, 13 Jul 2021 09:19: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/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + 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: @@ -2457,15 +2489,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2474,7 +2506,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:40 GMT + - Tue, 13 Jul 2021 09:19:41 GMT expires: - '-1' pragma: @@ -2490,7 +2522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '134' x-powered-by: - ASP.NET status: @@ -2510,15 +2542,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2527,7 +2559,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:41 GMT + - Tue, 13 Jul 2021 09:19:42 GMT expires: - '-1' pragma: @@ -2543,7 +2575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '133' x-powered-by: - ASP.NET status: @@ -2563,15 +2595,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2580,7 +2612,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:42 GMT + - Tue, 13 Jul 2021 09:19:43 GMT expires: - '-1' pragma: @@ -2596,7 +2628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '132' x-powered-by: - ASP.NET status: @@ -2616,15 +2648,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2633,7 +2665,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:44 GMT + - Tue, 13 Jul 2021 09:19:45 GMT expires: - '-1' pragma: @@ -2649,7 +2681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '131' x-powered-by: - ASP.NET status: @@ -2669,15 +2701,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2686,7 +2718,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:46 GMT + - Tue, 13 Jul 2021 09:19:46 GMT expires: - '-1' pragma: @@ -2702,7 +2734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '130' x-powered-by: - ASP.NET status: @@ -2722,15 +2754,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2739,7 +2771,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:47 GMT + - Tue, 13 Jul 2021 09:19:47 GMT expires: - '-1' pragma: @@ -2755,7 +2787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '129' x-powered-by: - ASP.NET status: @@ -2775,15 +2807,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2792,7 +2824,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:48 GMT + - Tue, 13 Jul 2021 09:19:48 GMT expires: - '-1' pragma: @@ -2808,7 +2840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '128' x-powered-by: - ASP.NET status: @@ -2828,15 +2860,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2845,7 +2877,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:49 GMT + - Tue, 13 Jul 2021 09:19:49 GMT expires: - '-1' pragma: @@ -2861,7 +2893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '127' x-powered-by: - ASP.NET status: @@ -2881,15 +2913,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2898,7 +2930,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:51 GMT + - Tue, 13 Jul 2021 09:19:51 GMT expires: - '-1' pragma: @@ -2914,7 +2946,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '126' x-powered-by: - ASP.NET status: @@ -2934,15 +2966,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2951,7 +2983,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:52 GMT + - Tue, 13 Jul 2021 09:19:52 GMT expires: - '-1' pragma: @@ -2967,7 +2999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '125' x-powered-by: - ASP.NET status: @@ -2987,15 +3019,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3004,7 +3036,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:53 GMT + - Tue, 13 Jul 2021 09:19:53 GMT expires: - '-1' pragma: @@ -3020,7 +3052,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '124' x-powered-by: - ASP.NET status: @@ -3040,15 +3072,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3057,7 +3089,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:54 GMT + - Tue, 13 Jul 2021 09:19:54 GMT expires: - '-1' pragma: @@ -3073,7 +3105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '123' x-powered-by: - ASP.NET status: @@ -3093,15 +3125,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3110,7 +3142,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:56 GMT + - Tue, 13 Jul 2021 09:19:55 GMT expires: - '-1' pragma: @@ -3126,7 +3158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '122' x-powered-by: - ASP.NET status: @@ -3146,15 +3178,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3163,7 +3195,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:57 GMT + - Tue, 13 Jul 2021 09:19:57 GMT expires: - '-1' pragma: @@ -3179,7 +3211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '121' x-powered-by: - ASP.NET status: @@ -3199,15 +3231,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3216,7 +3248,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:58 GMT + - Tue, 13 Jul 2021 09:19:58 GMT expires: - '-1' pragma: @@ -3232,7 +3264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '120' x-powered-by: - ASP.NET status: @@ -3252,15 +3284,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3269,7 +3301,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:51:59 GMT + - Tue, 13 Jul 2021 09:19:59 GMT expires: - '-1' pragma: @@ -3285,7 +3317,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '133' x-powered-by: - ASP.NET status: @@ -3305,15 +3337,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3322,7 +3354,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:00 GMT + - Tue, 13 Jul 2021 09:20:01 GMT expires: - '-1' pragma: @@ -3338,7 +3370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '132' x-powered-by: - ASP.NET status: @@ -3358,15 +3390,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3375,7 +3407,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:02 GMT + - Tue, 13 Jul 2021 09:20:02 GMT expires: - '-1' pragma: @@ -3391,7 +3423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '131' x-powered-by: - ASP.NET status: @@ -3411,15 +3443,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3428,7 +3460,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:03 GMT + - Tue, 13 Jul 2021 09:20:04 GMT expires: - '-1' pragma: @@ -3444,7 +3476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '130' x-powered-by: - ASP.NET status: @@ -3464,15 +3496,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3481,7 +3513,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:04 GMT + - Tue, 13 Jul 2021 09:20:05 GMT expires: - '-1' pragma: @@ -3497,7 +3529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '129' x-powered-by: - ASP.NET status: @@ -3517,15 +3549,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3534,7 +3566,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:05 GMT + - Tue, 13 Jul 2021 09:20:06 GMT expires: - '-1' pragma: @@ -3550,7 +3582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '128' x-powered-by: - ASP.NET status: @@ -3570,15 +3602,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3587,7 +3619,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:06 GMT + - Tue, 13 Jul 2021 09:20:08 GMT expires: - '-1' pragma: @@ -3603,7 +3635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '127' x-powered-by: - ASP.NET status: @@ -3623,15 +3655,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3640,7 +3672,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:08 GMT + - Tue, 13 Jul 2021 09:20:09 GMT expires: - '-1' pragma: @@ -3656,7 +3688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '126' x-powered-by: - ASP.NET status: @@ -3676,15 +3708,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3693,7 +3725,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:09 GMT + - Tue, 13 Jul 2021 09:20:10 GMT expires: - '-1' pragma: @@ -3709,7 +3741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '125' x-powered-by: - ASP.NET status: @@ -3729,15 +3761,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"InProgress","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3746,7 +3778,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:10 GMT + - Tue, 13 Jul 2021 09:20:11 GMT expires: - '-1' pragma: @@ -3762,7 +3794,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '124' x-powered-by: - ASP.NET status: @@ -3782,24 +3814,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/95fab103-b756-44ad-9b83-f698430378c4?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"95fab103-b756-44ad-9b83-f698430378c4","name":"95fab103-b756-44ad-9b83-f698430378c4","status":"Succeeded","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"2021-07-13T09:19:41.6139247Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"da3b999b-a352-4db8-bfa5-740a9281375f"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:11 GMT + - Tue, 13 Jul 2021 09:20:13 GMT expires: - '-1' pragma: @@ -3815,7 +3847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '123' x-powered-by: - ASP.NET status: @@ -3835,30 +3867,32 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/da3b999b-a352-4db8-bfa5-740a9281375f?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/da3b999b-a352-4db8-bfa5-740a9281375f","name":"da3b999b-a352-4db8-bfa5-740a9281375f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.0889127S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T09:19:41.6139247Z","endTime":"2021-07-13T09:20:12.7028374Z","activityId":"692d5fac-e3bb-11eb-be8c-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:13 GMT + - Tue, 13 Jul 2021 09:20: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: @@ -3868,7 +3902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '149' x-powered-by: - ASP.NET status: @@ -3888,30 +3922,50 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004?api-version=2021-03-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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\": \"fcf25b64-9a2c-4f1d-8f72-12d2faeceed7\",\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.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_322323380d3c4aa6a540ea12a3241f20\",\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_322323380d3c4aa6a540ea12a3241f20\"\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 + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '188' + - '2255' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:52:14 GMT + - Tue, 13 Jul 2021 09:20:13 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: @@ -3920,10 +3974,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31956 status: code: 200 message: OK @@ -3941,24 +3993,21 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T09%3A15%3A11.9145954Z''\"","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: - - Mon, 21 Jun 2021 12:52:15 GMT + - Tue, 13 Jul 2021 09:20:14 GMT expires: - '-1' pragma: @@ -3973,10 +4022,6 @@ interactions: - 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 @@ -3994,24 +4039,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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-07-13T19:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T19: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: - - Mon, 21 Jun 2021 12:52:16 GMT + - Tue, 13 Jul 2021 09:20:14 GMT expires: - '-1' pragma: @@ -4027,7 +4072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '149' x-powered-by: - ASP.NET status: @@ -4047,24 +4092,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","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;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:18 GMT + - Tue, 13 Jul 2021 09:20:14 GMT expires: - '-1' pragma: @@ -4080,7 +4125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '149' x-powered-by: - ASP.NET status: @@ -4100,24 +4145,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","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;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:19 GMT + - Tue, 13 Jul 2021 09:20:15 GMT expires: - '-1' pragma: @@ -4133,14 +4178,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '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.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 @@ -4150,48 +4197,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-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-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"InProgress","startTime":"2021-06-21T12:51:29.5606303Z","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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:52:20 GMT + - Tue, 13 Jul 2021 09:20: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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + 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: @@ -4206,24 +4253,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/96925348-4995-4b34-896e-4a17980b37db?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"96925348-4995-4b34-896e-4a17980b37db","name":"96925348-4995-4b34-896e-4a17980b37db","status":"Succeeded","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"2021-06-21T12:51:29.5606303Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"501a0544-461b-47df-824f-f8e158f6afc4"}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:21 GMT + - Tue, 13 Jul 2021 09:20:16 GMT expires: - '-1' pragma: @@ -4239,7 +4286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '149' x-powered-by: - ASP.NET status: @@ -4259,32 +4306,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/501a0544-461b-47df-824f-f8e158f6afc4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/501a0544-461b-47df-824f-f8e158f6afc4","name":"501a0544-461b-47df-824f-f8e158f6afc4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51.88059S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:51:29.5606303Z","endTime":"2021-06-21T12:52:21.4412203Z","activityId":"5c30558e-d28f-11eb-8b3a-c8f750f92764"}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '966' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:21 GMT + - Tue, 13 Jul 2021 09:20: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: @@ -4294,7 +4339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '148' x-powered-by: - ASP.NET status: @@ -4314,50 +4359,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-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\": \"ffdfbd9e-679d-4273-bcb6-29ce49ce6c8a\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": - \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_038b1fd661d5491c9e1ac12f90dc5284\",\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_038b1fd661d5491c9e1ac12f90dc5284\"\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 - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2255' + - '187' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 12:52:22 GMT + - Tue, 13 Jul 2021 09:20:18 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: @@ -4366,8 +4391,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31960 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -4385,21 +4412,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A48%3A03.7219516Z''\"","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":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '539' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:22 GMT + - Tue, 13 Jul 2021 09:20:20 GMT expires: - '-1' pragma: @@ -4414,6 +4444,10 @@ 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 @@ -4431,24 +4465,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '828' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:23 GMT + - Tue, 13 Jul 2021 09:20:21 GMT expires: - '-1' pragma: @@ -4464,7 +4498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -4484,24 +4518,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '7011' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:23 GMT + - Tue, 13 Jul 2021 09:20:22 GMT expires: - '-1' pragma: @@ -4517,7 +4551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -4537,24 +4571,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '7011' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:52:24 GMT + - Tue, 13 Jul 2021 09:20:23 GMT expires: - '-1' pragma: @@ -4570,16 +4604,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '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-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 @@ -4589,48 +4621,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","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/d70b633e-7f1c-4f2b-a310-daedbcf01a3c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:52:25 GMT + - Tue, 13 Jul 2021 09:20: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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/d70b633e-7f1c-4f2b-a310-daedbcf01a3c?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + 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: @@ -4645,24 +4677,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d70b633e-7f1c-4f2b-a310-daedbcf01a3c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"d70b633e-7f1c-4f2b-a310-daedbcf01a3c","name":"d70b633e-7f1c-4f2b-a310-daedbcf01a3c","status":"Succeeded","startTime":"2021-06-21T12:52:25.6653118Z","endTime":"2021-06-21T12:52:25.6653118Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"05714405-b2b3-4cb1-a958-3f6f73bf1384"}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:49 GMT + - Tue, 13 Jul 2021 09:20:26 GMT expires: - '-1' pragma: @@ -4678,7 +4710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '141' x-powered-by: - ASP.NET status: @@ -4698,32 +4730,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05714405-b2b3-4cb1-a958-3f6f73bf1384?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05714405-b2b3-4cb1-a958-3f6f73bf1384","name":"05714405-b2b3-4cb1-a958-3f6f73bf1384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31.3783799S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:52:25.6653118Z","endTime":"2021-06-21T12:52:57.0436917Z","activityId":"85520a10-d28f-11eb-afd9-c8f750f92764"}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:50 GMT + - Tue, 13 Jul 2021 09:20: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: @@ -4733,7 +4763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '140' x-powered-by: - ASP.NET status: @@ -4747,30 +4777,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":2}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '828' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:50 GMT + - Tue, 13 Jul 2021 09:20:28 GMT expires: - '-1' pragma: @@ -4786,54 +4816,44 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '139' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"protectedItemsCount": 2, "backupManagementType": "AzureIaasVM", - "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:30:00.000Z"], - "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:30: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 enable-for-vm Connection: - keep-alive - Content-Length: - - '537' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '850' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:53 GMT + - Tue, 13 Jul 2021 09:20:29 GMT expires: - '-1' pragma: @@ -4848,8 +4868,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -4863,30 +4883,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type -n -v -g --query + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:54 GMT + - Tue, 13 Jul 2021 09:20:31 GMT expires: - '-1' pragma: @@ -4902,7 +4922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '137' x-powered-by: - ASP.NET status: @@ -4916,30 +4936,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type -n -v -g --query + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-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/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:54 GMT + - Tue, 13 Jul 2021 09:20:32 GMT expires: - '-1' pragma: @@ -4955,7 +4975,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '136' x-powered-by: - ASP.NET status: @@ -4969,30 +4989,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:55 GMT + - Tue, 13 Jul 2021 09:20:33 GMT expires: - '-1' pragma: @@ -5008,7 +5028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '135' x-powered-by: - ASP.NET status: @@ -5022,30 +5042,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type -n -v -g --query + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:55 GMT + - Tue, 13 Jul 2021 09:20:34 GMT expires: - '-1' pragma: @@ -5061,7 +5081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '134' x-powered-by: - ASP.NET status: @@ -5075,30 +5095,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --workload-type -g -v -c -n + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:56 GMT + - Tue, 13 Jul 2021 09:20:35 GMT expires: - '-1' pragma: @@ -5114,7 +5134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '133' x-powered-by: - ASP.NET status: @@ -5128,30 +5148,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1976' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:57 GMT + - Tue, 13 Jul 2021 09:20:37 GMT expires: - '-1' pragma: @@ -5167,7 +5187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '132' x-powered-by: - ASP.NET status: @@ -5181,30 +5201,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:57 GMT + - Tue, 13 Jul 2021 09:20:38 GMT expires: - '-1' pragma: @@ -5220,7 +5240,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: @@ -5234,30 +5254,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:58 GMT + - Tue, 13 Jul 2021 09:20:39 GMT expires: - '-1' pragma: @@ -5273,7 +5293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '130' x-powered-by: - ASP.NET status: @@ -5287,30 +5307,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:58 GMT + - Tue, 13 Jul 2021 09:20:40 GMT expires: - '-1' pragma: @@ -5326,7 +5346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '129' x-powered-by: - ASP.NET status: @@ -5340,30 +5360,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:58 GMT + - Tue, 13 Jul 2021 09:20:41 GMT expires: - '-1' pragma: @@ -5379,7 +5399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '128' x-powered-by: - ASP.NET status: @@ -5393,30 +5413,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"70369092440848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3965' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:59 GMT + - Tue, 13 Jul 2021 09:20:43 GMT expires: - '-1' pragma: @@ -5432,7 +5452,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '127' x-powered-by: - ASP.NET status: @@ -5446,30 +5466,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '850' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 12:57:59 GMT + - Tue, 13 Jul 2021 09:20:44 GMT expires: - '-1' pragma: @@ -5485,67 +5505,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '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.Compute/virtualMachines/clitest-vm000003", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007", - "protectedItemType": "Microsoft.Compute/virtualMachines"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '567' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"InProgress","startTime":"2021-07-13T09:20:16.266558Z","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/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Mon, 21 Jun 2021 12:58:00 GMT + - Tue, 13 Jul 2021 09:20: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/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5554,30 +5572,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fc38e5e7-cf0b-4ac8-aed0-d23354111049?api-version=2021-01-01 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","name":"fc38e5e7-cf0b-4ac8-aed0-d23354111049","status":"Succeeded","startTime":"2021-07-13T09:20:16.266558Z","endTime":"2021-07-13T09:20:16.266558Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"27c6b291-081c-4a1e-9dde-78176b96c855"}}' headers: cache-control: - no-cache content-length: - - '188' + - '302' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:01 GMT + - Tue, 13 Jul 2021 09:20:47 GMT expires: - '-1' pragma: @@ -5593,7 +5611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '124' x-powered-by: - ASP.NET status: @@ -5607,36 +5625,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/27c6b291-081c-4a1e-9dde-78176b96c855?api-version=2021-01-01 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/27c6b291-081c-4a1e-9dde-78176b96c855","name":"27c6b291-081c-4a1e-9dde-78176b96c855","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31.1359536S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T09:20:16.266558Z","endTime":"2021-07-13T09:20:47.4025116Z","activityId":"8672e2cc-e3bb-11eb-a1f0-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '967' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:03 GMT + - Tue, 13 Jul 2021 09:20: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: @@ -5646,7 +5666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '149' x-powered-by: - ASP.NET status: @@ -5660,30 +5680,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup policy show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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-07-13T19:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T19:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":2}}' headers: cache-control: - no-cache content-length: - - '188' + - '828' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:04 GMT + - Tue, 13 Jul 2021 09:20:48 GMT expires: - '-1' pragma: @@ -5699,44 +5719,54 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"protectedItemsCount": 2, "backupManagementType": "AzureIaasVM", + "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T19:00:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": {"retentionTimes": ["2021-07-13T19:00:00.000Z"], "retentionDuration": + {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, + "timeZone": "UTC"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup policy set Connection: - keep-alive + Content-Length: + - '537' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - -g -v --policy User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + 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=2021-01-01 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T19:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T19:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '850' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:05 GMT + - Tue, 13 Jul 2021 09:20:49 GMT expires: - '-1' pragma: @@ -5751,8 +5781,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -5766,30 +5796,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --backup-management-type -n -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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","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: - - '188' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:06 GMT + - Tue, 13 Jul 2021 09:20:49 GMT expires: - '-1' pragma: @@ -5805,7 +5835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '148' x-powered-by: - ASP.NET status: @@ -5819,30 +5849,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --backup-management-type -n -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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-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: - - '188' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:08 GMT + - Tue, 13 Jul 2021 09:20:50 GMT expires: - '-1' pragma: @@ -5858,7 +5888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '149' x-powered-by: - ASP.NET status: @@ -5872,30 +5902,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:09 GMT + - Tue, 13 Jul 2021 09:20:50 GMT expires: - '-1' pragma: @@ -5911,7 +5941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '113' x-powered-by: - ASP.NET status: @@ -5925,30 +5955,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --backup-management-type -n -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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","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: - - '188' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:10 GMT + - Tue, 13 Jul 2021 09:20:51 GMT expires: - '-1' pragma: @@ -5964,7 +5994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '149' x-powered-by: - ASP.NET status: @@ -5978,30 +6008,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --workload-type -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"InProgress","startTime":"2021-06-21T12:58:00.7072125Z","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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:11 GMT + - Tue, 13 Jul 2021 09:20:51 GMT expires: - '-1' pragma: @@ -6017,7 +6047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '119' x-powered-by: - ASP.NET status: @@ -6031,30 +6061,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/602a16cd-e1e5-4ec4-b803-46d4f30c9e80?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 response: body: - string: '{"id":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","name":"602a16cd-e1e5-4ec4-b803-46d4f30c9e80","status":"Succeeded","startTime":"2021-06-21T12:58:00.7072125Z","endTime":"2021-06-21T12:58:00.7072125Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8f696855-49f3-466c-8653-885c458720cb"}}' + 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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '304' + - '1976' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:12 GMT + - Tue, 13 Jul 2021 09:20:52 GMT expires: - '-1' pragma: @@ -6070,7 +6100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '149' x-powered-by: - ASP.NET status: @@ -6084,38 +6114,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n -p + - --backup-management-type --workload-type -g -v -c User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8f696855-49f3-466c-8653-885c458720cb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/8f696855-49f3-466c-8653-885c458720cb","name":"8f696855-49f3-466c-8653-885c458720cb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.5974901S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"clitest-item000007"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:58:00.7272087Z","endTime":"2021-06-21T12:58:12.3246988Z","activityId":"4df06f91-d290-11eb-bd1c-c8f750f92764"}}' + 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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '979' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:13 GMT + - Tue, 13 Jul 2021 09:20: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: @@ -6125,7 +6153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '118' x-powered-by: - ASP.NET status: @@ -6139,30 +6167,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup item list Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - --backup-management-type --workload-type -g -v -c User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"70369092440848","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","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + 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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '3987' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:13 GMT + - Tue, 13 Jul 2021 09:20:53 GMT expires: - '-1' pragma: @@ -6178,7 +6206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '117' x-powered-by: - ASP.NET status: @@ -6192,30 +6220,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup item list Connection: - keep-alive ParameterSetName: - - --backup-management-type -v -g --query + - --backup-management-type --workload-type -g -v -c User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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"}}]}' + 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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2429' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:14 GMT + - Tue, 13 Jul 2021 09:20:53 GMT expires: - '-1' pragma: @@ -6231,7 +6259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '116' x-powered-by: - ASP.NET status: @@ -6249,26 +6277,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query + - --backup-management-type --workload-type -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"70369092440848","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","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + 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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '3987' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:14 GMT + - Tue, 13 Jul 2021 09:20:54 GMT expires: - '-1' pragma: @@ -6284,7 +6312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '118' x-powered-by: - ASP.NET status: @@ -6298,31 +6326,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"70369092440848","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","isArchiveEnabled":false}},{"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":"70370774830413","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","isArchiveEnabled":false}}]}' + 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":"17593275093827","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '3987' + - '3965' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:14 GMT + - Tue, 13 Jul 2021 09:20:54 GMT expires: - '-1' pragma: @@ -6338,7 +6365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '112' x-powered-by: - ASP.NET status: @@ -6352,45 +6379,101 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -n -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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=2021-01-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":["2021-07-13T19:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T19: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: + - Tue, 13 Jul 2021 09:20: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: + - '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/clitest-item000007", + "protectedItemType": "Microsoft.Compute/virtualMachines"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy Connection: - keep-alive Content-Length: - - '0' + - '567' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: DELETE + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:58:15 GMT + - Tue, 13 Jul 2021 09:20:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -6404,22 +6487,233 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 + response: + body: + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:20: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 + response: + body: + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:20: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: + - '148' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 + response: + body: + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:20: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: + - '147' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 + response: + body: + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:21: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: + - '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 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6428,7 +6722,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:16 GMT + - Tue, 13 Jul 2021 09:21:01 GMT expires: - '-1' pragma: @@ -6444,7 +6738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -6458,22 +6752,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6482,7 +6775,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:17 GMT + - Tue, 13 Jul 2021 09:21:02 GMT expires: - '-1' pragma: @@ -6498,7 +6791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '144' x-powered-by: - ASP.NET status: @@ -6512,22 +6805,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6536,7 +6828,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:18 GMT + - Tue, 13 Jul 2021 09:21:04 GMT expires: - '-1' pragma: @@ -6552,7 +6844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '143' x-powered-by: - ASP.NET status: @@ -6566,22 +6858,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6590,7 +6881,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:19 GMT + - Tue, 13 Jul 2021 09:21:05 GMT expires: - '-1' pragma: @@ -6606,7 +6897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '142' x-powered-by: - ASP.NET status: @@ -6620,22 +6911,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"InProgress","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6644,7 +6934,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:21 GMT + - Tue, 13 Jul 2021 09:21:06 GMT expires: - '-1' pragma: @@ -6660,7 +6950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '141' x-powered-by: - ASP.NET status: @@ -6674,31 +6964,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6477fe2b-c27f-45f3-93d3-571455ab24c3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6477fe2b-c27f-45f3-93d3-571455ab24c3","name":"6477fe2b-c27f-45f3-93d3-571455ab24c3","status":"Succeeded","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"2021-07-13T09:20:56.5550465Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fe40793b-fc49-41bd-bf06-f6b9cbe967fb"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:22 GMT + - Tue, 13 Jul 2021 09:21:08 GMT expires: - '-1' pragma: @@ -6714,7 +7003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '140' x-powered-by: - ASP.NET status: @@ -6728,37 +7017,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy 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 -n -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe40793b-fc49-41bd-bf06-f6b9cbe967fb?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe40793b-fc49-41bd-bf06-f6b9cbe967fb","name":"fe40793b-fc49-41bd-bf06-f6b9cbe967fb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.1529992S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"clitest-item000007"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T09:20:56.5550465Z","endTime":"2021-07-13T09:21:07.7080457Z","activityId":"9f3242dc-e3bb-11eb-8e36-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '979' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:23 GMT + - Tue, 13 Jul 2021 09:21: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: @@ -6768,7 +7058,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -6782,31 +7072,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item show 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 -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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":"17593275093827","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","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3987' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:24 GMT + - Tue, 13 Jul 2021 09:21:09 GMT expires: - '-1' pragma: @@ -6822,7 +7111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '111' x-powered-by: - ASP.NET status: @@ -6836,31 +7125,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 --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2429' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:26 GMT + - Tue, 13 Jul 2021 09:21:09 GMT expires: - '-1' pragma: @@ -6876,7 +7164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: @@ -6890,31 +7178,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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":"17593275093827","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","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3987' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:27 GMT + - Tue, 13 Jul 2021 09:21:10 GMT expires: - '-1' pragma: @@ -6930,7 +7217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '117' x-powered-by: - ASP.NET status: @@ -6951,24 +7238,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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":"17593275093827","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","isArchiveEnabled":false}},{"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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3987' content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:28 GMT + - Tue, 13 Jul 2021 09:21:09 GMT expires: - '-1' pragma: @@ -6984,7 +7271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '118' x-powered-by: - ASP.NET status: @@ -7001,49 +7288,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:58:30 GMT + - Tue, 13 Jul 2021 09:21:11 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + 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: @@ -7059,15 +7344,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7076,7 +7361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:31 GMT + - Tue, 13 Jul 2021 09:21:11 GMT expires: - '-1' pragma: @@ -7092,7 +7377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '149' x-powered-by: - ASP.NET status: @@ -7113,15 +7398,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7130,7 +7415,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:32 GMT + - Tue, 13 Jul 2021 09:21:12 GMT expires: - '-1' pragma: @@ -7146,7 +7431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '148' x-powered-by: - ASP.NET status: @@ -7167,15 +7452,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7184,7 +7469,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:33 GMT + - Tue, 13 Jul 2021 09:21:13 GMT expires: - '-1' pragma: @@ -7200,7 +7485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '147' x-powered-by: - ASP.NET status: @@ -7221,15 +7506,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7238,7 +7523,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:34 GMT + - Tue, 13 Jul 2021 09:21:14 GMT expires: - '-1' pragma: @@ -7254,7 +7539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '146' x-powered-by: - ASP.NET status: @@ -7275,15 +7560,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7292,7 +7577,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:35 GMT + - Tue, 13 Jul 2021 09:21:15 GMT expires: - '-1' pragma: @@ -7308,7 +7593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '145' x-powered-by: - ASP.NET status: @@ -7329,15 +7614,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7346,7 +7631,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:37 GMT + - Tue, 13 Jul 2021 09:21:17 GMT expires: - '-1' pragma: @@ -7362,7 +7647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '144' x-powered-by: - ASP.NET status: @@ -7383,15 +7668,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7400,7 +7685,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:38 GMT + - Tue, 13 Jul 2021 09:21:18 GMT expires: - '-1' pragma: @@ -7416,7 +7701,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '143' x-powered-by: - ASP.NET status: @@ -7437,15 +7722,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7454,7 +7739,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:39 GMT + - Tue, 13 Jul 2021 09:21:19 GMT expires: - '-1' pragma: @@ -7470,7 +7755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '142' x-powered-by: - ASP.NET status: @@ -7491,15 +7776,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7508,7 +7793,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:41 GMT + - Tue, 13 Jul 2021 09:21:21 GMT expires: - '-1' pragma: @@ -7524,7 +7809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '141' x-powered-by: - ASP.NET status: @@ -7545,15 +7830,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7562,7 +7847,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:42 GMT + - Tue, 13 Jul 2021 09:21:23 GMT expires: - '-1' pragma: @@ -7578,7 +7863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '140' x-powered-by: - ASP.NET status: @@ -7599,15 +7884,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7616,7 +7901,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:43 GMT + - Tue, 13 Jul 2021 09:21:24 GMT expires: - '-1' pragma: @@ -7632,7 +7917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '139' x-powered-by: - ASP.NET status: @@ -7653,15 +7938,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7670,7 +7955,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:44 GMT + - Tue, 13 Jul 2021 09:21:25 GMT expires: - '-1' pragma: @@ -7686,7 +7971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '138' x-powered-by: - ASP.NET status: @@ -7707,15 +7992,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7724,7 +8009,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:46 GMT + - Tue, 13 Jul 2021 09:21:26 GMT expires: - '-1' pragma: @@ -7740,7 +8025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '137' x-powered-by: - ASP.NET status: @@ -7761,15 +8046,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7778,7 +8063,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:47 GMT + - Tue, 13 Jul 2021 09:21:28 GMT expires: - '-1' pragma: @@ -7794,7 +8079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '136' x-powered-by: - ASP.NET status: @@ -7815,15 +8100,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7832,7 +8117,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:48 GMT + - Tue, 13 Jul 2021 09:21:29 GMT expires: - '-1' pragma: @@ -7848,7 +8133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '135' x-powered-by: - ASP.NET status: @@ -7869,15 +8154,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7886,7 +8171,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:49 GMT + - Tue, 13 Jul 2021 09:21:30 GMT expires: - '-1' pragma: @@ -7902,7 +8187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '134' x-powered-by: - ASP.NET status: @@ -7923,15 +8208,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7940,7 +8225,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:50 GMT + - Tue, 13 Jul 2021 09:21:31 GMT expires: - '-1' pragma: @@ -7956,7 +8241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '133' x-powered-by: - ASP.NET status: @@ -7977,15 +8262,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7994,7 +8279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:52 GMT + - Tue, 13 Jul 2021 09:21:32 GMT expires: - '-1' pragma: @@ -8010,7 +8295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '132' x-powered-by: - ASP.NET status: @@ -8031,15 +8316,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8048,7 +8333,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:53 GMT + - Tue, 13 Jul 2021 09:21:34 GMT expires: - '-1' pragma: @@ -8064,7 +8349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '131' x-powered-by: - ASP.NET status: @@ -8085,15 +8370,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8102,7 +8387,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:54 GMT + - Tue, 13 Jul 2021 09:21:35 GMT expires: - '-1' pragma: @@ -8118,7 +8403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '130' x-powered-by: - ASP.NET status: @@ -8139,15 +8424,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8156,7 +8441,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:56 GMT + - Tue, 13 Jul 2021 09:21:36 GMT expires: - '-1' pragma: @@ -8172,7 +8457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '129' x-powered-by: - ASP.NET status: @@ -8193,15 +8478,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8210,7 +8495,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:57 GMT + - Tue, 13 Jul 2021 09:21:37 GMT expires: - '-1' pragma: @@ -8226,7 +8511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '128' x-powered-by: - ASP.NET status: @@ -8247,15 +8532,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8264,7 +8549,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:58 GMT + - Tue, 13 Jul 2021 09:21:39 GMT expires: - '-1' pragma: @@ -8280,7 +8565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '127' x-powered-by: - ASP.NET status: @@ -8301,15 +8586,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8318,7 +8603,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:58:59 GMT + - Tue, 13 Jul 2021 09:21:40 GMT expires: - '-1' pragma: @@ -8334,7 +8619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '126' x-powered-by: - ASP.NET status: @@ -8355,15 +8640,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8372,7 +8657,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:01 GMT + - Tue, 13 Jul 2021 09:21:41 GMT expires: - '-1' pragma: @@ -8388,7 +8673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '125' x-powered-by: - ASP.NET status: @@ -8409,15 +8694,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8426,7 +8711,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:02 GMT + - Tue, 13 Jul 2021 09:21:42 GMT expires: - '-1' pragma: @@ -8442,7 +8727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '124' x-powered-by: - ASP.NET status: @@ -8463,15 +8748,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8480,7 +8765,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:03 GMT + - Tue, 13 Jul 2021 09:21:44 GMT expires: - '-1' pragma: @@ -8496,7 +8781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '123' x-powered-by: - ASP.NET status: @@ -8517,15 +8802,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8534,7 +8819,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:04 GMT + - Tue, 13 Jul 2021 09:21:45 GMT expires: - '-1' pragma: @@ -8550,7 +8835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '122' x-powered-by: - ASP.NET status: @@ -8571,15 +8856,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8588,7 +8873,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:05 GMT + - Tue, 13 Jul 2021 09:21:46 GMT expires: - '-1' pragma: @@ -8604,7 +8889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '121' x-powered-by: - ASP.NET status: @@ -8625,15 +8910,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8642,7 +8927,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:07 GMT + - Tue, 13 Jul 2021 09:21:47 GMT expires: - '-1' pragma: @@ -8658,7 +8943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '120' x-powered-by: - ASP.NET status: @@ -8679,15 +8964,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8696,7 +8981,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:08 GMT + - Tue, 13 Jul 2021 09:21:48 GMT expires: - '-1' pragma: @@ -8712,7 +8997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '119' x-powered-by: - ASP.NET status: @@ -8733,15 +9018,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8750,7 +9035,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:09 GMT + - Tue, 13 Jul 2021 09:21:50 GMT expires: - '-1' pragma: @@ -8766,7 +9051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '118' x-powered-by: - ASP.NET status: @@ -8787,15 +9072,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8804,7 +9089,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:11 GMT + - Tue, 13 Jul 2021 09:21:51 GMT expires: - '-1' pragma: @@ -8820,7 +9105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '117' x-powered-by: - ASP.NET status: @@ -8841,15 +9126,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8858,7 +9143,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:12 GMT + - Tue, 13 Jul 2021 09:21:52 GMT expires: - '-1' pragma: @@ -8874,7 +9159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '116' x-powered-by: - ASP.NET status: @@ -8895,15 +9180,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8912,7 +9197,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:13 GMT + - Tue, 13 Jul 2021 09:21:53 GMT expires: - '-1' pragma: @@ -8928,7 +9213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '115' x-powered-by: - ASP.NET status: @@ -8949,15 +9234,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8966,7 +9251,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:14 GMT + - Tue, 13 Jul 2021 09:21:55 GMT expires: - '-1' pragma: @@ -8982,7 +9267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '114' x-powered-by: - ASP.NET status: @@ -9003,15 +9288,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9020,7 +9305,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:15 GMT + - Tue, 13 Jul 2021 09:21:56 GMT expires: - '-1' pragma: @@ -9036,7 +9321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '113' x-powered-by: - ASP.NET status: @@ -9057,15 +9342,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9074,7 +9359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:17 GMT + - Tue, 13 Jul 2021 09:21:57 GMT expires: - '-1' pragma: @@ -9090,7 +9375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '112' x-powered-by: - ASP.NET status: @@ -9111,15 +9396,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9128,7 +9413,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:18 GMT + - Tue, 13 Jul 2021 09:21:58 GMT expires: - '-1' pragma: @@ -9144,7 +9429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '111' x-powered-by: - ASP.NET status: @@ -9165,15 +9450,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9182,7 +9467,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:19 GMT + - Tue, 13 Jul 2021 09:22:25 GMT expires: - '-1' pragma: @@ -9198,7 +9483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '110' x-powered-by: - ASP.NET status: @@ -9219,15 +9504,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9236,7 +9521,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:20 GMT + - Tue, 13 Jul 2021 09:22:26 GMT expires: - '-1' pragma: @@ -9252,7 +9537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '109' x-powered-by: - ASP.NET status: @@ -9273,15 +9558,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9290,7 +9575,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:21 GMT + - Tue, 13 Jul 2021 09:22:28 GMT expires: - '-1' pragma: @@ -9306,7 +9591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '108' x-powered-by: - ASP.NET status: @@ -9327,15 +9612,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9344,7 +9629,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:24 GMT + - Tue, 13 Jul 2021 09:22:29 GMT expires: - '-1' pragma: @@ -9360,7 +9645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '107' x-powered-by: - ASP.NET status: @@ -9381,15 +9666,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9398,7 +9683,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:25 GMT + - Tue, 13 Jul 2021 09:22:30 GMT expires: - '-1' pragma: @@ -9414,7 +9699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '106' x-powered-by: - ASP.NET status: @@ -9435,15 +9720,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9452,7 +9737,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:26 GMT + - Tue, 13 Jul 2021 09:22:31 GMT expires: - '-1' pragma: @@ -9468,7 +9753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '105' x-powered-by: - ASP.NET status: @@ -9489,15 +9774,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9506,7 +9791,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:28 GMT + - Tue, 13 Jul 2021 09:22:33 GMT expires: - '-1' pragma: @@ -9522,7 +9807,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '104' x-powered-by: - ASP.NET status: @@ -9543,15 +9828,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9560,7 +9845,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:29 GMT + - Tue, 13 Jul 2021 09:22:35 GMT expires: - '-1' pragma: @@ -9576,7 +9861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '103' x-powered-by: - ASP.NET status: @@ -9597,15 +9882,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9614,7 +9899,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:30 GMT + - Tue, 13 Jul 2021 09:22:36 GMT expires: - '-1' pragma: @@ -9630,7 +9915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '102' x-powered-by: - ASP.NET status: @@ -9651,15 +9936,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9668,7 +9953,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:31 GMT + - Tue, 13 Jul 2021 09:22:37 GMT expires: - '-1' pragma: @@ -9684,7 +9969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '101' x-powered-by: - ASP.NET status: @@ -9705,15 +9990,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9722,7 +10007,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:33 GMT + - Tue, 13 Jul 2021 09:22:38 GMT expires: - '-1' pragma: @@ -9738,7 +10023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '100' x-powered-by: - ASP.NET status: @@ -9759,15 +10044,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9776,7 +10061,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:34 GMT + - Tue, 13 Jul 2021 09:22:40 GMT expires: - '-1' pragma: @@ -9792,7 +10077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '99' x-powered-by: - ASP.NET status: @@ -9813,15 +10098,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9830,7 +10115,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:35 GMT + - Tue, 13 Jul 2021 09:22:41 GMT expires: - '-1' pragma: @@ -9846,7 +10131,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '98' x-powered-by: - ASP.NET status: @@ -9867,15 +10152,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9884,7 +10169,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:36 GMT + - Tue, 13 Jul 2021 09:22:42 GMT expires: - '-1' pragma: @@ -9900,7 +10185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '97' x-powered-by: - ASP.NET status: @@ -9921,15 +10206,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9938,7 +10223,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:38 GMT + - Tue, 13 Jul 2021 09:22:43 GMT expires: - '-1' pragma: @@ -9954,7 +10239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '96' x-powered-by: - ASP.NET status: @@ -9975,15 +10260,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9992,7 +10277,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:39 GMT + - Tue, 13 Jul 2021 09:22:44 GMT expires: - '-1' pragma: @@ -10008,7 +10293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '95' x-powered-by: - ASP.NET status: @@ -10029,15 +10314,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10046,7 +10331,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:40 GMT + - Tue, 13 Jul 2021 09:22:46 GMT expires: - '-1' pragma: @@ -10062,7 +10347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '94' x-powered-by: - ASP.NET status: @@ -10083,15 +10368,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10100,7 +10385,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:42 GMT + - Tue, 13 Jul 2021 09:22:47 GMT expires: - '-1' pragma: @@ -10116,7 +10401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '93' x-powered-by: - ASP.NET status: @@ -10137,15 +10422,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10154,7 +10439,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:43 GMT + - Tue, 13 Jul 2021 09:22:48 GMT expires: - '-1' pragma: @@ -10170,7 +10455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '92' x-powered-by: - ASP.NET status: @@ -10191,15 +10476,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10208,7 +10493,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:44 GMT + - Tue, 13 Jul 2021 09:22:49 GMT expires: - '-1' pragma: @@ -10224,7 +10509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '91' x-powered-by: - ASP.NET status: @@ -10245,15 +10530,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10262,7 +10547,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:45 GMT + - Tue, 13 Jul 2021 09:22:50 GMT expires: - '-1' pragma: @@ -10278,7 +10563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '90' x-powered-by: - ASP.NET status: @@ -10299,15 +10584,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10316,7 +10601,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:46 GMT + - Tue, 13 Jul 2021 09:22:52 GMT expires: - '-1' pragma: @@ -10332,7 +10617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '89' x-powered-by: - ASP.NET status: @@ -10353,15 +10638,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10370,7 +10655,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:48 GMT + - Tue, 13 Jul 2021 09:22:53 GMT expires: - '-1' pragma: @@ -10386,7 +10671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '88' x-powered-by: - ASP.NET status: @@ -10407,15 +10692,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10424,7 +10709,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:49 GMT + - Tue, 13 Jul 2021 09:22:54 GMT expires: - '-1' pragma: @@ -10440,7 +10725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '87' x-powered-by: - ASP.NET status: @@ -10461,15 +10746,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10478,7 +10763,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:50 GMT + - Tue, 13 Jul 2021 09:22:55 GMT expires: - '-1' pragma: @@ -10494,7 +10779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '86' x-powered-by: - ASP.NET status: @@ -10515,15 +10800,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10532,7 +10817,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:51 GMT + - Tue, 13 Jul 2021 09:22:56 GMT expires: - '-1' pragma: @@ -10548,7 +10833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '85' x-powered-by: - ASP.NET status: @@ -10569,15 +10854,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10586,7 +10871,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:52 GMT + - Tue, 13 Jul 2021 09:22:58 GMT expires: - '-1' pragma: @@ -10602,7 +10887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '84' x-powered-by: - ASP.NET status: @@ -10623,15 +10908,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10640,7 +10925,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:54 GMT + - Tue, 13 Jul 2021 09:22:59 GMT expires: - '-1' pragma: @@ -10656,7 +10941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '83' x-powered-by: - ASP.NET status: @@ -10677,15 +10962,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10694,7 +10979,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:55 GMT + - Tue, 13 Jul 2021 09:23:00 GMT expires: - '-1' pragma: @@ -10710,7 +10995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '82' x-powered-by: - ASP.NET status: @@ -10731,15 +11016,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10748,7 +11033,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:56 GMT + - Tue, 13 Jul 2021 09:23:01 GMT expires: - '-1' pragma: @@ -10764,7 +11049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '81' x-powered-by: - ASP.NET status: @@ -10785,15 +11070,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"InProgress","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10802,7 +11087,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:58 GMT + - Tue, 13 Jul 2021 09:23:03 GMT expires: - '-1' pragma: @@ -10818,7 +11103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '80' x-powered-by: - ASP.NET status: @@ -10839,24 +11124,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8a5591f4-2fd7-40e1-a34e-38ba63f60b62?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","name":"8a5591f4-2fd7-40e1-a34e-38ba63f60b62","status":"Succeeded","startTime":"2021-07-13T09:21:11.3391831Z","endTime":"2021-07-13T09:21:11.3391831Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c52c5391-4ae5-4fec-ac00-592fcb0adc1e"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 12:59:59 GMT + - Tue, 13 Jul 2021 09:23:04 GMT expires: - '-1' pragma: @@ -10872,7 +11157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '79' x-powered-by: - ASP.NET status: @@ -10893,30 +11178,32 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c52c5391-4ae5-4fec-ac00-592fcb0adc1e?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c52c5391-4ae5-4fec-ac00-592fcb0adc1e","name":"c52c5391-4ae5-4fec-ac00-592fcb0adc1e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.3415862S","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-07-13T09:21:11.3391831Z","endTime":"2021-07-13T09:23:03.6807693Z","activityId":"a8505aa6-e3bb-11eb-af4e-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '973' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:00 GMT + - Tue, 13 Jul 2021 09:23: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: @@ -10926,7 +11213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '149' x-powered-by: - ASP.NET status: @@ -10940,31 +11227,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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-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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1988' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:01 GMT + - Tue, 13 Jul 2021 09:23:05 GMT expires: - '-1' pragma: @@ -10980,7 +11266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '120' x-powered-by: - ASP.NET status: @@ -11001,24 +11287,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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-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":"17593807892293","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1988' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:02 GMT + - Tue, 13 Jul 2021 09:23:05 GMT expires: - '-1' pragma: @@ -11034,7 +11320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '118' x-powered-by: - ASP.NET status: @@ -11051,49 +11337,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-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-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","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/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 13:00:04 GMT + - Tue, 13 Jul 2021 09:23:06 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -11109,15 +11393,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11126,7 +11410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:05 GMT + - Tue, 13 Jul 2021 09:23:06 GMT expires: - '-1' pragma: @@ -11142,7 +11426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '149' x-powered-by: - ASP.NET status: @@ -11163,15 +11447,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11180,7 +11464,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:06 GMT + - Tue, 13 Jul 2021 09:23:09 GMT expires: - '-1' pragma: @@ -11196,7 +11480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '148' x-powered-by: - ASP.NET status: @@ -11217,15 +11501,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11234,7 +11518,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:07 GMT + - Tue, 13 Jul 2021 09:23:10 GMT expires: - '-1' pragma: @@ -11250,7 +11534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '147' x-powered-by: - ASP.NET status: @@ -11271,15 +11555,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"InProgress","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11288,7 +11572,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:09 GMT + - Tue, 13 Jul 2021 09:23:11 GMT expires: - '-1' pragma: @@ -11304,7 +11588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '146' x-powered-by: - ASP.NET status: @@ -11325,24 +11609,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd057749-263c-42ba-be6e-a47d9806904e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"cd057749-263c-42ba-be6e-a47d9806904e","name":"cd057749-263c-42ba-be6e-a47d9806904e","status":"Succeeded","startTime":"2021-06-21T12:58:15.8650615Z","endTime":"2021-06-21T12:58:15.8650615Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f2103802-6b7a-4f90-9708-e6be90002406"}}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:10 GMT + - Tue, 13 Jul 2021 09:23:12 GMT expires: - '-1' pragma: @@ -11358,7 +11642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '145' x-powered-by: - ASP.NET status: @@ -11379,32 +11663,30 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f2103802-6b7a-4f90-9708-e6be90002406?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f2103802-6b7a-4f90-9708-e6be90002406","name":"f2103802-6b7a-4f90-9708-e6be90002406","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.7330405S","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-06-21T12:58:15.8650615Z","endTime":"2021-06-21T13:00:08.598102Z","activityId":"5745fd15-d290-11eb-ad3d-c8f750f92764"}}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '972' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:10 GMT + - Tue, 13 Jul 2021 09:23: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: @@ -11414,7 +11696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '144' x-powered-by: - ASP.NET status: @@ -11428,30 +11710,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1988' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:11 GMT + - Tue, 13 Jul 2021 09:23:15 GMT expires: - '-1' pragma: @@ -11467,7 +11750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -11488,24 +11771,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"70370774830413","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","isArchiveEnabled":false}}]}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1988' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:11 GMT + - Tue, 13 Jul 2021 09:23:16 GMT expires: - '-1' pragma: @@ -11521,7 +11804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '142' x-powered-by: - ASP.NET status: @@ -11538,47 +11821,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","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/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 13:00:12 GMT + - Tue, 13 Jul 2021 09:23:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + 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: @@ -11594,15 +11879,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11611,7 +11896,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:13 GMT + - Tue, 13 Jul 2021 09:23:19 GMT expires: - '-1' pragma: @@ -11627,7 +11912,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '140' x-powered-by: - ASP.NET status: @@ -11648,15 +11933,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11665,7 +11950,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:15 GMT + - Tue, 13 Jul 2021 09:23:20 GMT expires: - '-1' pragma: @@ -11681,7 +11966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '139' x-powered-by: - ASP.NET status: @@ -11702,15 +11987,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11719,7 +12004,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:16 GMT + - Tue, 13 Jul 2021 09:23:21 GMT expires: - '-1' pragma: @@ -11735,7 +12020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '138' x-powered-by: - ASP.NET status: @@ -11756,15 +12041,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11773,7 +12058,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:17 GMT + - Tue, 13 Jul 2021 09:23:22 GMT expires: - '-1' pragma: @@ -11789,7 +12074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '137' x-powered-by: - ASP.NET status: @@ -11810,15 +12095,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11827,7 +12112,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:18 GMT + - Tue, 13 Jul 2021 09:23:23 GMT expires: - '-1' pragma: @@ -11843,7 +12128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '136' x-powered-by: - ASP.NET status: @@ -11864,15 +12149,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11881,7 +12166,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:20 GMT + - Tue, 13 Jul 2021 09:23:25 GMT expires: - '-1' pragma: @@ -11897,7 +12182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '135' x-powered-by: - ASP.NET status: @@ -11918,15 +12203,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11935,7 +12220,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:21 GMT + - Tue, 13 Jul 2021 09:23:26 GMT expires: - '-1' pragma: @@ -11951,7 +12236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '134' x-powered-by: - ASP.NET status: @@ -11972,15 +12257,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11989,7 +12274,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:22 GMT + - Tue, 13 Jul 2021 09:23:27 GMT expires: - '-1' pragma: @@ -12005,7 +12290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '133' x-powered-by: - ASP.NET status: @@ -12026,15 +12311,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12043,7 +12328,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:23 GMT + - Tue, 13 Jul 2021 09:23:28 GMT expires: - '-1' pragma: @@ -12059,7 +12344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '132' x-powered-by: - ASP.NET status: @@ -12080,15 +12365,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12097,7 +12382,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:24 GMT + - Tue, 13 Jul 2021 09:23:30 GMT expires: - '-1' pragma: @@ -12113,7 +12398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '131' x-powered-by: - ASP.NET status: @@ -12134,15 +12419,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12151,7 +12436,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:26 GMT + - Tue, 13 Jul 2021 09:23:31 GMT expires: - '-1' pragma: @@ -12167,7 +12452,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '130' x-powered-by: - ASP.NET status: @@ -12188,15 +12473,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12205,7 +12490,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:27 GMT + - Tue, 13 Jul 2021 09:23:32 GMT expires: - '-1' pragma: @@ -12221,7 +12506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '129' x-powered-by: - ASP.NET status: @@ -12242,15 +12527,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12259,7 +12544,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:28 GMT + - Tue, 13 Jul 2021 09:23:33 GMT expires: - '-1' pragma: @@ -12275,7 +12560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '128' x-powered-by: - ASP.NET status: @@ -12296,15 +12581,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12313,7 +12598,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:29 GMT + - Tue, 13 Jul 2021 09:23:35 GMT expires: - '-1' pragma: @@ -12329,7 +12614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '127' x-powered-by: - ASP.NET status: @@ -12350,15 +12635,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12367,7 +12652,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:30 GMT + - Tue, 13 Jul 2021 09:23:36 GMT expires: - '-1' pragma: @@ -12383,7 +12668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '126' x-powered-by: - ASP.NET status: @@ -12404,15 +12689,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12421,7 +12706,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:32 GMT + - Tue, 13 Jul 2021 09:23:37 GMT expires: - '-1' pragma: @@ -12437,7 +12722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '125' x-powered-by: - ASP.NET status: @@ -12458,15 +12743,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12475,7 +12760,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:33 GMT + - Tue, 13 Jul 2021 09:23:38 GMT expires: - '-1' pragma: @@ -12491,7 +12776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '124' x-powered-by: - ASP.NET status: @@ -12512,15 +12797,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12529,7 +12814,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:34 GMT + - Tue, 13 Jul 2021 09:23:40 GMT expires: - '-1' pragma: @@ -12545,7 +12830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '123' x-powered-by: - ASP.NET status: @@ -12566,15 +12851,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12583,7 +12868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:35 GMT + - Tue, 13 Jul 2021 09:23:41 GMT expires: - '-1' pragma: @@ -12599,7 +12884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '122' x-powered-by: - ASP.NET status: @@ -12620,15 +12905,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12637,7 +12922,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:37 GMT + - Tue, 13 Jul 2021 09:23:42 GMT expires: - '-1' pragma: @@ -12653,7 +12938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '121' x-powered-by: - ASP.NET status: @@ -12674,15 +12959,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12691,7 +12976,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:38 GMT + - Tue, 13 Jul 2021 09:23:43 GMT expires: - '-1' pragma: @@ -12707,7 +12992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '120' x-powered-by: - ASP.NET status: @@ -12728,15 +13013,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12745,7 +13030,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:39 GMT + - Tue, 13 Jul 2021 09:23:44 GMT expires: - '-1' pragma: @@ -12761,7 +13046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '119' x-powered-by: - ASP.NET status: @@ -12782,15 +13067,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12799,7 +13084,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:41 GMT + - Tue, 13 Jul 2021 09:23:46 GMT expires: - '-1' pragma: @@ -12815,7 +13100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '118' x-powered-by: - ASP.NET status: @@ -12836,15 +13121,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12853,7 +13138,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:42 GMT + - Tue, 13 Jul 2021 09:23:47 GMT expires: - '-1' pragma: @@ -12869,7 +13154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '117' x-powered-by: - ASP.NET status: @@ -12890,15 +13175,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12907,7 +13192,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:43 GMT + - Tue, 13 Jul 2021 09:23:48 GMT expires: - '-1' pragma: @@ -12923,7 +13208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '116' x-powered-by: - ASP.NET status: @@ -12944,15 +13229,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12961,7 +13246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:44 GMT + - Tue, 13 Jul 2021 09:23:50 GMT expires: - '-1' pragma: @@ -12977,7 +13262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '115' x-powered-by: - ASP.NET status: @@ -12998,15 +13283,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13015,7 +13300,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:46 GMT + - Tue, 13 Jul 2021 09:23:51 GMT expires: - '-1' pragma: @@ -13031,7 +13316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '114' x-powered-by: - ASP.NET status: @@ -13052,15 +13337,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13069,7 +13354,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:47 GMT + - Tue, 13 Jul 2021 09:23:52 GMT expires: - '-1' pragma: @@ -13085,7 +13370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '113' x-powered-by: - ASP.NET status: @@ -13106,15 +13391,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13123,7 +13408,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:48 GMT + - Tue, 13 Jul 2021 09:23:53 GMT expires: - '-1' pragma: @@ -13139,7 +13424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '112' x-powered-by: - ASP.NET status: @@ -13160,15 +13445,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13177,7 +13462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:49 GMT + - Tue, 13 Jul 2021 09:23:54 GMT expires: - '-1' pragma: @@ -13193,7 +13478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '111' x-powered-by: - ASP.NET status: @@ -13214,15 +13499,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13231,7 +13516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:51 GMT + - Tue, 13 Jul 2021 09:23:56 GMT expires: - '-1' pragma: @@ -13247,7 +13532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '110' x-powered-by: - ASP.NET status: @@ -13268,15 +13553,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13285,7 +13570,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:52 GMT + - Tue, 13 Jul 2021 09:23:57 GMT expires: - '-1' pragma: @@ -13301,7 +13586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '109' x-powered-by: - ASP.NET status: @@ -13322,15 +13607,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13339,7 +13624,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:53 GMT + - Tue, 13 Jul 2021 09:23:58 GMT expires: - '-1' pragma: @@ -13355,7 +13640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '108' x-powered-by: - ASP.NET status: @@ -13376,15 +13661,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13393,7 +13678,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:54 GMT + - Tue, 13 Jul 2021 09:23:59 GMT expires: - '-1' pragma: @@ -13409,7 +13694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '107' x-powered-by: - ASP.NET status: @@ -13430,15 +13715,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13447,7 +13732,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:56 GMT + - Tue, 13 Jul 2021 09:24:00 GMT expires: - '-1' pragma: @@ -13463,7 +13748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '106' x-powered-by: - ASP.NET status: @@ -13484,15 +13769,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13501,7 +13786,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:57 GMT + - Tue, 13 Jul 2021 09:24:02 GMT expires: - '-1' pragma: @@ -13517,7 +13802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '105' x-powered-by: - ASP.NET status: @@ -13538,15 +13823,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13555,7 +13840,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:58 GMT + - Tue, 13 Jul 2021 09:24:03 GMT expires: - '-1' pragma: @@ -13571,7 +13856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '104' x-powered-by: - ASP.NET status: @@ -13592,15 +13877,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13609,7 +13894,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:00:59 GMT + - Tue, 13 Jul 2021 09:24:04 GMT expires: - '-1' pragma: @@ -13625,7 +13910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '103' x-powered-by: - ASP.NET status: @@ -13646,15 +13931,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13663,7 +13948,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:00 GMT + - Tue, 13 Jul 2021 09:24:05 GMT expires: - '-1' pragma: @@ -13679,7 +13964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '102' x-powered-by: - ASP.NET status: @@ -13700,15 +13985,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13717,7 +14002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:02 GMT + - Tue, 13 Jul 2021 09:24:07 GMT expires: - '-1' pragma: @@ -13733,7 +14018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '101' x-powered-by: - ASP.NET status: @@ -13754,15 +14039,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13771,7 +14056,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:03 GMT + - Tue, 13 Jul 2021 09:24:08 GMT expires: - '-1' pragma: @@ -13787,7 +14072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '100' x-powered-by: - ASP.NET status: @@ -13808,15 +14093,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13825,7 +14110,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:04 GMT + - Tue, 13 Jul 2021 09:24:09 GMT expires: - '-1' pragma: @@ -13841,7 +14126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '99' x-powered-by: - ASP.NET status: @@ -13862,15 +14147,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13879,7 +14164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:06 GMT + - Tue, 13 Jul 2021 09:24:10 GMT expires: - '-1' pragma: @@ -13895,7 +14180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '98' x-powered-by: - ASP.NET status: @@ -13916,15 +14201,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13933,7 +14218,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:07 GMT + - Tue, 13 Jul 2021 09:24:11 GMT expires: - '-1' pragma: @@ -13949,7 +14234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '97' x-powered-by: - ASP.NET status: @@ -13970,15 +14255,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13987,7 +14272,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:08 GMT + - Tue, 13 Jul 2021 09:24:13 GMT expires: - '-1' pragma: @@ -14003,7 +14288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '96' x-powered-by: - ASP.NET status: @@ -14024,15 +14309,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14041,7 +14326,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:09 GMT + - Tue, 13 Jul 2021 09:24:14 GMT expires: - '-1' pragma: @@ -14057,7 +14342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '95' x-powered-by: - ASP.NET status: @@ -14078,15 +14363,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14095,7 +14380,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:10 GMT + - Tue, 13 Jul 2021 09:24:15 GMT expires: - '-1' pragma: @@ -14111,7 +14396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '94' x-powered-by: - ASP.NET status: @@ -14132,15 +14417,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14149,7 +14434,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:12 GMT + - Tue, 13 Jul 2021 09:24:16 GMT expires: - '-1' pragma: @@ -14165,7 +14450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '93' x-powered-by: - ASP.NET status: @@ -14186,15 +14471,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14203,7 +14488,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:13 GMT + - Tue, 13 Jul 2021 09:24:17 GMT expires: - '-1' pragma: @@ -14219,7 +14504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '92' x-powered-by: - ASP.NET status: @@ -14240,15 +14525,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14257,7 +14542,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:14 GMT + - Tue, 13 Jul 2021 09:24:19 GMT expires: - '-1' pragma: @@ -14273,7 +14558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '91' x-powered-by: - ASP.NET status: @@ -14294,15 +14579,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14311,7 +14596,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:15 GMT + - Tue, 13 Jul 2021 09:24:20 GMT expires: - '-1' pragma: @@ -14327,7 +14612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '90' x-powered-by: - ASP.NET status: @@ -14348,15 +14633,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14365,7 +14650,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:17 GMT + - Tue, 13 Jul 2021 09:24:21 GMT expires: - '-1' pragma: @@ -14381,7 +14666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '89' x-powered-by: - ASP.NET status: @@ -14402,15 +14687,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14419,7 +14704,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:18 GMT + - Tue, 13 Jul 2021 09:24:22 GMT expires: - '-1' pragma: @@ -14435,7 +14720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '88' x-powered-by: - ASP.NET status: @@ -14456,15 +14741,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14473,7 +14758,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:19 GMT + - Tue, 13 Jul 2021 09:24:24 GMT expires: - '-1' pragma: @@ -14489,7 +14774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '87' x-powered-by: - ASP.NET status: @@ -14510,15 +14795,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14527,7 +14812,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:20 GMT + - Tue, 13 Jul 2021 09:24:25 GMT expires: - '-1' pragma: @@ -14543,7 +14828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '86' x-powered-by: - ASP.NET status: @@ -14564,15 +14849,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14581,7 +14866,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:22 GMT + - Tue, 13 Jul 2021 09:24:26 GMT expires: - '-1' pragma: @@ -14597,7 +14882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '85' x-powered-by: - ASP.NET status: @@ -14618,15 +14903,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14635,7 +14920,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:23 GMT + - Tue, 13 Jul 2021 09:24:27 GMT expires: - '-1' pragma: @@ -14651,7 +14936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '84' x-powered-by: - ASP.NET status: @@ -14672,15 +14957,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14689,7 +14974,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:24 GMT + - Tue, 13 Jul 2021 09:24:28 GMT expires: - '-1' pragma: @@ -14705,7 +14990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '83' x-powered-by: - ASP.NET status: @@ -14726,15 +15011,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14743,7 +15028,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:25 GMT + - Tue, 13 Jul 2021 09:24:30 GMT expires: - '-1' pragma: @@ -14759,7 +15044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '82' x-powered-by: - ASP.NET status: @@ -14780,15 +15065,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14797,7 +15082,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:27 GMT + - Tue, 13 Jul 2021 09:24:31 GMT expires: - '-1' pragma: @@ -14813,7 +15098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '81' x-powered-by: - ASP.NET status: @@ -14834,15 +15119,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14851,7 +15136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:28 GMT + - Tue, 13 Jul 2021 09:24:32 GMT expires: - '-1' pragma: @@ -14867,7 +15152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '80' x-powered-by: - ASP.NET status: @@ -14888,15 +15173,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14905,7 +15190,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:29 GMT + - Tue, 13 Jul 2021 09:24:33 GMT expires: - '-1' pragma: @@ -14921,7 +15206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '79' x-powered-by: - ASP.NET status: @@ -14942,15 +15227,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14959,7 +15244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:30 GMT + - Tue, 13 Jul 2021 09:24:34 GMT expires: - '-1' pragma: @@ -14975,7 +15260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '78' x-powered-by: - ASP.NET status: @@ -14996,15 +15281,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15013,7 +15298,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:32 GMT + - Tue, 13 Jul 2021 09:24:37 GMT expires: - '-1' pragma: @@ -15029,7 +15314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '77' x-powered-by: - ASP.NET status: @@ -15050,15 +15335,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15067,7 +15352,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:33 GMT + - Tue, 13 Jul 2021 09:24:38 GMT expires: - '-1' pragma: @@ -15083,7 +15368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '76' x-powered-by: - ASP.NET status: @@ -15104,15 +15389,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15121,7 +15406,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:46 GMT + - Tue, 13 Jul 2021 09:24:39 GMT expires: - '-1' pragma: @@ -15137,7 +15422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '75' x-powered-by: - ASP.NET status: @@ -15158,15 +15443,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15175,7 +15460,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:47 GMT + - Tue, 13 Jul 2021 09:24:40 GMT expires: - '-1' pragma: @@ -15191,7 +15476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '74' x-powered-by: - ASP.NET status: @@ -15212,15 +15497,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15229,7 +15514,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:48 GMT + - Tue, 13 Jul 2021 09:24:41 GMT expires: - '-1' pragma: @@ -15245,7 +15530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '73' x-powered-by: - ASP.NET status: @@ -15266,15 +15551,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15283,7 +15568,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:49 GMT + - Tue, 13 Jul 2021 09:24:43 GMT expires: - '-1' pragma: @@ -15299,7 +15584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '72' x-powered-by: - ASP.NET status: @@ -15320,15 +15605,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15337,7 +15622,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:51 GMT + - Tue, 13 Jul 2021 09:24:44 GMT expires: - '-1' pragma: @@ -15353,7 +15638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '71' x-powered-by: - ASP.NET status: @@ -15374,15 +15659,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15391,7 +15676,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:52 GMT + - Tue, 13 Jul 2021 09:24:45 GMT expires: - '-1' pragma: @@ -15407,7 +15692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '70' x-powered-by: - ASP.NET status: @@ -15428,15 +15713,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15445,7 +15730,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:53 GMT + - Tue, 13 Jul 2021 09:24:46 GMT expires: - '-1' pragma: @@ -15461,7 +15746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '69' x-powered-by: - ASP.NET status: @@ -15482,15 +15767,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15499,7 +15784,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:54 GMT + - Tue, 13 Jul 2021 09:24:48 GMT expires: - '-1' pragma: @@ -15515,7 +15800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '68' x-powered-by: - ASP.NET status: @@ -15536,15 +15821,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15553,7 +15838,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:56 GMT + - Tue, 13 Jul 2021 09:24:49 GMT expires: - '-1' pragma: @@ -15569,7 +15854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '67' x-powered-by: - ASP.NET status: @@ -15590,15 +15875,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15607,7 +15892,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:57 GMT + - Tue, 13 Jul 2021 09:24:50 GMT expires: - '-1' pragma: @@ -15623,7 +15908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '66' x-powered-by: - ASP.NET status: @@ -15644,15 +15929,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15661,7 +15946,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:58 GMT + - Tue, 13 Jul 2021 09:24:51 GMT expires: - '-1' pragma: @@ -15677,7 +15962,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '65' x-powered-by: - ASP.NET status: @@ -15698,15 +15983,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15715,7 +16000,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:01:59 GMT + - Tue, 13 Jul 2021 09:24:53 GMT expires: - '-1' pragma: @@ -15731,7 +16016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '64' x-powered-by: - ASP.NET status: @@ -15752,15 +16037,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15769,7 +16054,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:00 GMT + - Tue, 13 Jul 2021 09:24:54 GMT expires: - '-1' pragma: @@ -15785,7 +16070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '63' x-powered-by: - ASP.NET status: @@ -15806,15 +16091,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15823,7 +16108,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:02 GMT + - Tue, 13 Jul 2021 09:24:55 GMT expires: - '-1' pragma: @@ -15839,7 +16124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '62' x-powered-by: - ASP.NET status: @@ -15860,15 +16145,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15877,7 +16162,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:03 GMT + - Tue, 13 Jul 2021 09:24:56 GMT expires: - '-1' pragma: @@ -15893,7 +16178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '61' x-powered-by: - ASP.NET status: @@ -15914,15 +16199,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"InProgress","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"InProgress","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15931,7 +16216,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:04 GMT + - Tue, 13 Jul 2021 09:24:58 GMT expires: - '-1' pragma: @@ -15947,7 +16232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '60' x-powered-by: - ASP.NET status: @@ -15968,15 +16253,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/050ee9d4-f84e-468e-9344-28083d8e9f52?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c2088b48-169c-4b48-8881-f38f40bea1e3?api-version=2021-01-01 response: body: - string: '{"id":"050ee9d4-f84e-468e-9344-28083d8e9f52","name":"050ee9d4-f84e-468e-9344-28083d8e9f52","status":"Succeeded","startTime":"2021-06-21T13:00:13.2834344Z","endTime":"2021-06-21T13:00:13.2834344Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"98961b05-401f-42d8-aaa0-3e6bcf0705f8"}}' + string: '{"id":"c2088b48-169c-4b48-8881-f38f40bea1e3","name":"c2088b48-169c-4b48-8881-f38f40bea1e3","status":"Succeeded","startTime":"2021-07-13T09:23:07.0088825Z","endTime":"2021-07-13T09:23:07.0088825Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0d046616-a19a-4ba0-8599-c3b291ce96a2"}}' headers: cache-control: - no-cache @@ -15985,7 +16270,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:05 GMT + - Tue, 13 Jul 2021 09:24:59 GMT expires: - '-1' pragma: @@ -16001,7 +16286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '59' x-powered-by: - ASP.NET status: @@ -16022,16 +16307,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/98961b05-401f-42d8-aaa0-3e6bcf0705f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0d046616-a19a-4ba0-8599-c3b291ce96a2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/98961b05-401f-42d8-aaa0-3e6bcf0705f8","name":"98961b05-401f-42d8-aaa0-3e6bcf0705f8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M52.7148034S","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-06-21T13:00:13.2834344Z","endTime":"2021-06-21T13:02:05.9982378Z","activityId":"9d3e0af9-d290-11eb-aa84-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0d046616-a19a-4ba0-8599-c3b291ce96a2","name":"0d046616-a19a-4ba0-8599-c3b291ce96a2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M52.0114267S","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-07-13T09:23:07.0088825Z","endTime":"2021-07-13T09:24:59.0203092Z","activityId":"ed2be9e4-e3bb-11eb-a2aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -16040,7 +16325,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:06 GMT + - Tue, 13 Jul 2021 09:24:59 GMT expires: - '-1' pragma: @@ -16067,7 +16352,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -16079,9 +16364,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -16091,7 +16376,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:02:09 GMT + - Tue, 13 Jul 2021 09:25:01 GMT expires: - '-1' pragma: 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 8c0c6818f34..6615c9edfa4 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T13%3A02%3A16.1940804Z''\"","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-07-13T14%3A20%3A40.6317154Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:16 GMT + - Tue, 13 Jul 2021 14:20:40 GMT expires: - '-1' pragma: @@ -43,7 +43,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '208' + - '209' status: code: 201 message: Created @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:16 GMT + - Tue, 13 Jul 2021 14:20:40 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:02:17 GMT + - Tue, 13 Jul 2021 14:20:41 GMT expires: - '-1' pragma: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T13:02: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-07-13T14:20:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:02:18 GMT + - Tue, 13 Jul 2021 14:20:43 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 13:02:18 GMT + - Tue, 13 Jul 2021 14:20:43 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 13:07:18 GMT + - Tue, 13 Jul 2021 14:25:43 GMT source-age: - - '270' + - '112' strict-transport-security: - max-age=31536000 vary: @@ -285,15 +286,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 9cf69d764ac2e6f6e26f1842f7ad83e14fe7d5aa + - 0a703b1c8e5599ab4cccb8423d811e2c0f1b809c x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1268-QPG + - cache-qpg1249-QPG x-timer: - - S1624280539.872089,VS0,VE0 + - S1626186044.500191,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:02:18 GMT + - Tue, 13 Jul 2021 14:20:43 GMT expires: - '-1' pragma: @@ -395,15 +396,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_dq5jtJztpRGQ1zCGFl0fLpOi5Ggm2L09","name":"vm_deploy_dq5jtJztpRGQ1zCGFl0fLpOi5Ggm2L09","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9529989457203590159","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T13:02:20.8172605Z","duration":"PT1.1780027S","correlationId":"fe734ba7-60e2-4c74-9b17-9c0cb566eb4f","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_U3zkZq0ZGdamYBICMqhkIVhrx8BWr2td","name":"vm_deploy_U3zkZq0ZGdamYBICMqhkIVhrx8BWr2td","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10269954398404493709","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T14:20:45.2399363Z","duration":"PT0.833741S","correlationId":"680d4e1e-9378-4965-9f27-4d3482316d5e","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_dq5jtJztpRGQ1zCGFl0fLpOi5Ggm2L09/operationStatuses/08585773263458383779?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_U3zkZq0ZGdamYBICMqhkIVhrx8BWr2td/operationStatuses/08585754208410714407?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -411,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:02:20 GMT + - Tue, 13 Jul 2021 14:20:44 GMT expires: - '-1' pragma: @@ -439,9 +440,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773263458383779?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/08585754208410714407?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:02:51 GMT + - Tue, 13 Jul 2021 14:21:14 GMT expires: - '-1' pragma: @@ -481,9 +482,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773263458383779?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/08585754208410714407?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:03:21 GMT + - Tue, 13 Jul 2021 14:21:45 GMT expires: - '-1' pragma: @@ -523,21 +524,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dq5jtJztpRGQ1zCGFl0fLpOi5Ggm2L09","name":"vm_deploy_dq5jtJztpRGQ1zCGFl0fLpOi5Ggm2L09","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9529989457203590159","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T13:03:10.9505719Z","duration":"PT51.3113141S","correlationId":"fe734ba7-60e2-4c74-9b17-9c0cb566eb4f","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_U3zkZq0ZGdamYBICMqhkIVhrx8BWr2td","name":"vm_deploy_U3zkZq0ZGdamYBICMqhkIVhrx8BWr2td","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10269954398404493709","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T14:21:34.0048195Z","duration":"PT49.5986242S","correlationId":"680d4e1e-9378-4965-9f27-4d3482316d5e","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' + - '4086' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:03:21 GMT + - Tue, 13 Jul 2021 14:21:45 GMT expires: - '-1' pragma: @@ -565,7 +566,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -574,16 +575,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\": \"5bd4aa4c-1135-4f96-83be-10831ed137c4\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"67dcdf76-c884-4746-a68a-145ed193623a\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_67e978d9e590413799564e1905aa7bf6\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_c2f5eec48fcf475989adb0d275fc1301\",\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_67e978d9e590413799564e1905aa7bf6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_c2f5eec48fcf475989adb0d275fc1301\"\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\": @@ -597,16 +598,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\": \"2021-06-21T13:03:22+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T14:21:46+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_67e978d9e590413799564e1905aa7bf6\",\r\n \"statuses\": + \"clitest-vm000003_disk1_c2f5eec48fcf475989adb0d275fc1301\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T13:02:42.6762399+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:21:12.0132862+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T13:03:07.3011589+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:21:31.6382881+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}" @@ -618,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:03:21 GMT + - Tue, 13 Jul 2021 14:21:45 GMT expires: - '-1' pragma: @@ -635,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31918 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31988 status: code: 200 message: OK @@ -653,20 +654,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"d0b02a27-9da8-440b-84e8-03179fa3f56e\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6dcbdd9b-ba68-44f8-a830-4005500b1b14\\\"\",\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\": \"6c4fe9f5-184c-4480-9360-7a4402cebfa3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8fba4cee-9963-48c2-9034-f9cfec2d6002\",\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/\\\"d0b02a27-9da8-440b-84e8-03179fa3f56e\\\"\",\r\n + \ \"etag\": \"W/\\\"6dcbdd9b-ba68-44f8-a830-4005500b1b14\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +676,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\": - \"sg2nrzhsmpoujk4su4pdkodrdb.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C9-8A-93\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"im0qc0en1uuetemdniaor04dkb.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C8-C5-FC\",\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\": @@ -690,9 +691,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:03:21 GMT + - Tue, 13 Jul 2021 14:21:46 GMT etag: - - W/"d0b02a27-9da8-440b-84e8-03179fa3f56e" + - W/"6dcbdd9b-ba68-44f8-a830-4005500b1b14" expires: - '-1' pragma: @@ -709,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ec6d77d-f246-4e57-8171-07224848c1a5 + - 7903df2c-adc3-430b-9ccf-973a8d3e8895 status: code: 200 message: OK @@ -727,19 +728,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"d844f3cb-9c1f-49e4-921a-65dc98288a0b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"07962955-21e7-44d3-9752-8aba33eadab2\\\"\",\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\": \"962c2b94-a900-4dba-a56a-e496853e77e6\",\r\n - \ \"ipAddress\": \"20.205.235.145\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"d60591e0-f351-4825-84c6-bcda308d57f0\",\r\n + \ \"ipAddress\": \"13.76.102.150\",\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}" @@ -747,13 +748,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:03:21 GMT + - Tue, 13 Jul 2021 14:21:46 GMT etag: - - W/"d844f3cb-9c1f-49e4-921a-65dc98288a0b" + - W/"07962955-21e7-44d3-9752-8aba33eadab2" expires: - '-1' pragma: @@ -770,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e0609666-3173-4c0c-ac3c-ca4a7eb7bf43 + - 15f15cab-d7fd-49bf-81fe-6b117b16924e status: code: 200 message: OK @@ -788,7 +789,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -797,16 +798,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\": \"5bd4aa4c-1135-4f96-83be-10831ed137c4\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"67dcdf76-c884-4746-a68a-145ed193623a\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_67e978d9e590413799564e1905aa7bf6\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_c2f5eec48fcf475989adb0d275fc1301\",\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_67e978d9e590413799564e1905aa7bf6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_c2f5eec48fcf475989adb0d275fc1301\"\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\": @@ -824,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:03:22 GMT + - Tue, 13 Jul 2021 14:21:46 GMT expires: - '-1' pragma: @@ -841,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31917 + - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31987 status: code: 200 message: OK @@ -859,12 +860,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T13%3A02%3A16.1940804Z''\"","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-07-13T14%3A20%3A40.6317154Z''\"","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 @@ -873,7 +874,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:22 GMT + - Tue, 13 Jul 2021 14:21:46 GMT expires: - '-1' pragma: @@ -905,15 +906,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T23:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T23: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-07-14T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -922,7 +923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:23 GMT + - Tue, 13 Jul 2021 14:21:47 GMT expires: - '-1' pragma: @@ -938,7 +939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -958,24 +959,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmjgcee/protectableItems/vm;iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmjgcee","name":"iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmjgcee","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax/providers/Microsoft.Compute/virtualMachines/clitest-vmjgcee","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjgcee","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmtzqbx/protectableItems/vm;iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmtzqbx","name":"iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmtzqbx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax/providers/Microsoft.Compute/virtualMachines/clitest-vmtzqbx","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmtzqbx","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '8271' + - '3231' content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:23 GMT + - Tue, 13 Jul 2021 14:21:47 GMT expires: - '-1' pragma: @@ -991,7 +992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -1013,8 +1014,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -1024,17 +1025,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2019-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/c74ed759-d273-445a-8da9-946528102dba?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:24 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1042,7 +1043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1062,12 +1063,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1077,11 +1078,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:25 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1109,12 +1110,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1124,11 +1125,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:26 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1156,12 +1157,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1171,11 +1172,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:28 GMT + - Tue, 13 Jul 2021 14:21: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/operationResults/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1203,12 +1204,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1218,11 +1219,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:29 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1250,12 +1251,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1265,11 +1266,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:30 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1297,12 +1298,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1312,11 +1313,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:31 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1344,12 +1345,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1359,11 +1360,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:33 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1391,12 +1392,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1406,11 +1407,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:34 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1438,12 +1439,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1453,11 +1454,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:35 GMT + - Tue, 13 Jul 2021 14:21: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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1485,12 +1486,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/7da982a6-63a2-4d87-9a47-746ce51a9b94?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c74ed759-d273-445a-8da9-946528102dba?api-version=2021-01-01 response: body: string: '' @@ -1498,7 +1499,7 @@ interactions: cache-control: - no-cache date: - - Mon, 21 Jun 2021 13:03:36 GMT + - Tue, 13 Jul 2021 14:21:59 GMT expires: - '-1' pragma: @@ -1528,24 +1529,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmtzqbx/protectableItems/vm;iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmtzqbx","name":"iaasvmcontainerv2;clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax;clitest-vmtzqbx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax/providers/Microsoft.Compute/virtualMachines/clitest-vmtzqbx","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgb7xg2dqv2kjm3tky7cpjpamavtz2tt32nlonkp4pra2viz2iqhnncq7ev4m53laax","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmtzqbx","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '8271' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:36 GMT + - Tue, 13 Jul 2021 14:22:01 GMT expires: - '-1' pragma: @@ -1561,7 +1562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -1587,8 +1588,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -1598,17 +1599,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 13:03:37 GMT + - Tue, 13 Jul 2021 14:22: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1616,7 +1617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -1636,15 +1637,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1653,7 +1654,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:38 GMT + - Tue, 13 Jul 2021 14:22:01 GMT expires: - '-1' pragma: @@ -1669,7 +1670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '149' x-powered-by: - ASP.NET status: @@ -1689,15 +1690,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1706,7 +1707,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:39 GMT + - Tue, 13 Jul 2021 14:22:03 GMT expires: - '-1' pragma: @@ -1722,7 +1723,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '148' x-powered-by: - ASP.NET status: @@ -1742,15 +1743,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1759,7 +1760,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:40 GMT + - Tue, 13 Jul 2021 14:22:04 GMT expires: - '-1' pragma: @@ -1775,7 +1776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '147' x-powered-by: - ASP.NET status: @@ -1795,15 +1796,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1812,7 +1813,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:41 GMT + - Tue, 13 Jul 2021 14:22:05 GMT expires: - '-1' pragma: @@ -1828,7 +1829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '146' x-powered-by: - ASP.NET status: @@ -1848,15 +1849,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1865,7 +1866,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:43 GMT + - Tue, 13 Jul 2021 14:22:06 GMT expires: - '-1' pragma: @@ -1881,7 +1882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '145' x-powered-by: - ASP.NET status: @@ -1901,15 +1902,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1918,7 +1919,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:44 GMT + - Tue, 13 Jul 2021 14:22:07 GMT expires: - '-1' pragma: @@ -1934,7 +1935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '144' x-powered-by: - ASP.NET status: @@ -1954,15 +1955,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1971,7 +1972,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:45 GMT + - Tue, 13 Jul 2021 14:22:09 GMT expires: - '-1' pragma: @@ -1987,7 +1988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '143' x-powered-by: - ASP.NET status: @@ -2007,15 +2008,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2024,7 +2025,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:46 GMT + - Tue, 13 Jul 2021 14:22:10 GMT expires: - '-1' pragma: @@ -2040,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '142' x-powered-by: - ASP.NET status: @@ -2060,15 +2061,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2077,7 +2078,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:47 GMT + - Tue, 13 Jul 2021 14:22:11 GMT expires: - '-1' pragma: @@ -2093,7 +2094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '141' x-powered-by: - ASP.NET status: @@ -2113,15 +2114,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2130,7 +2131,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:49 GMT + - Tue, 13 Jul 2021 14:22:12 GMT expires: - '-1' pragma: @@ -2146,7 +2147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '140' x-powered-by: - ASP.NET status: @@ -2166,15 +2167,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2183,7 +2184,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:50 GMT + - Tue, 13 Jul 2021 14:22:15 GMT expires: - '-1' pragma: @@ -2199,7 +2200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '139' x-powered-by: - ASP.NET status: @@ -2219,15 +2220,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2236,7 +2237,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:51 GMT + - Tue, 13 Jul 2021 14:22:16 GMT expires: - '-1' pragma: @@ -2252,7 +2253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '138' x-powered-by: - ASP.NET status: @@ -2272,15 +2273,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2289,7 +2290,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:52 GMT + - Tue, 13 Jul 2021 14:22:17 GMT expires: - '-1' pragma: @@ -2305,7 +2306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '137' x-powered-by: - ASP.NET status: @@ -2325,15 +2326,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2342,7 +2343,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:53 GMT + - Tue, 13 Jul 2021 14:22:18 GMT expires: - '-1' pragma: @@ -2358,7 +2359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '136' x-powered-by: - ASP.NET status: @@ -2378,15 +2379,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2395,7 +2396,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:55 GMT + - Tue, 13 Jul 2021 14:22:19 GMT expires: - '-1' pragma: @@ -2411,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '135' x-powered-by: - ASP.NET status: @@ -2431,15 +2432,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2448,7 +2449,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:56 GMT + - Tue, 13 Jul 2021 14:22:21 GMT expires: - '-1' pragma: @@ -2464,7 +2465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '134' x-powered-by: - ASP.NET status: @@ -2484,15 +2485,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2501,7 +2502,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:57 GMT + - Tue, 13 Jul 2021 14:22:22 GMT expires: - '-1' pragma: @@ -2517,7 +2518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '133' x-powered-by: - ASP.NET status: @@ -2537,15 +2538,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2554,7 +2555,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:58 GMT + - Tue, 13 Jul 2021 14:22:24 GMT expires: - '-1' pragma: @@ -2570,7 +2571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '132' x-powered-by: - ASP.NET status: @@ -2590,15 +2591,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2607,7 +2608,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:03:59 GMT + - Tue, 13 Jul 2021 14:22:25 GMT expires: - '-1' pragma: @@ -2623,7 +2624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '131' x-powered-by: - ASP.NET status: @@ -2643,15 +2644,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2660,7 +2661,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:01 GMT + - Tue, 13 Jul 2021 14:22:26 GMT expires: - '-1' pragma: @@ -2676,7 +2677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '130' x-powered-by: - ASP.NET status: @@ -2696,15 +2697,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2713,7 +2714,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:02 GMT + - Tue, 13 Jul 2021 14:22:27 GMT expires: - '-1' pragma: @@ -2729,7 +2730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '129' x-powered-by: - ASP.NET status: @@ -2749,15 +2750,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2766,7 +2767,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:03 GMT + - Tue, 13 Jul 2021 14:22:29 GMT expires: - '-1' pragma: @@ -2782,7 +2783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '128' x-powered-by: - ASP.NET status: @@ -2802,15 +2803,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2819,7 +2820,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:04 GMT + - Tue, 13 Jul 2021 14:22:30 GMT expires: - '-1' pragma: @@ -2835,7 +2836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '127' x-powered-by: - ASP.NET status: @@ -2855,15 +2856,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2872,7 +2873,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:06 GMT + - Tue, 13 Jul 2021 14:22:31 GMT expires: - '-1' pragma: @@ -2888,7 +2889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '126' x-powered-by: - ASP.NET status: @@ -2908,15 +2909,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2925,7 +2926,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:07 GMT + - Tue, 13 Jul 2021 14:22:32 GMT expires: - '-1' pragma: @@ -2941,7 +2942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '125' x-powered-by: - ASP.NET status: @@ -2961,15 +2962,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2978,7 +2979,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:08 GMT + - Tue, 13 Jul 2021 14:22:34 GMT expires: - '-1' pragma: @@ -2994,7 +2995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '124' x-powered-by: - ASP.NET status: @@ -3014,15 +3015,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3031,7 +3032,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:09 GMT + - Tue, 13 Jul 2021 14:22:35 GMT expires: - '-1' pragma: @@ -3047,7 +3048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '123' x-powered-by: - ASP.NET status: @@ -3067,15 +3068,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3084,7 +3085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:10 GMT + - Tue, 13 Jul 2021 14:22:36 GMT expires: - '-1' pragma: @@ -3100,7 +3101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '122' x-powered-by: - ASP.NET status: @@ -3120,15 +3121,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3137,7 +3138,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:12 GMT + - Tue, 13 Jul 2021 14:22:37 GMT expires: - '-1' pragma: @@ -3153,7 +3154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '121' x-powered-by: - ASP.NET status: @@ -3173,15 +3174,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3190,7 +3191,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:13 GMT + - Tue, 13 Jul 2021 14:22:38 GMT expires: - '-1' pragma: @@ -3206,7 +3207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '120' x-powered-by: - ASP.NET status: @@ -3226,15 +3227,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3243,7 +3244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:14 GMT + - Tue, 13 Jul 2021 14:22:40 GMT expires: - '-1' pragma: @@ -3259,7 +3260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '119' x-powered-by: - ASP.NET status: @@ -3279,15 +3280,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3296,7 +3297,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:15 GMT + - Tue, 13 Jul 2021 14:22:41 GMT expires: - '-1' pragma: @@ -3312,7 +3313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '118' x-powered-by: - ASP.NET status: @@ -3332,15 +3333,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3349,7 +3350,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:17 GMT + - Tue, 13 Jul 2021 14:22:42 GMT expires: - '-1' pragma: @@ -3365,7 +3366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '117' x-powered-by: - ASP.NET status: @@ -3385,15 +3386,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3402,7 +3403,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:18 GMT + - Tue, 13 Jul 2021 14:22:43 GMT expires: - '-1' pragma: @@ -3418,7 +3419,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '116' x-powered-by: - ASP.NET status: @@ -3438,15 +3439,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3455,7 +3456,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:19 GMT + - Tue, 13 Jul 2021 14:22:44 GMT expires: - '-1' pragma: @@ -3471,7 +3472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '115' x-powered-by: - ASP.NET status: @@ -3491,15 +3492,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3508,7 +3509,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:20 GMT + - Tue, 13 Jul 2021 14:22:46 GMT expires: - '-1' pragma: @@ -3524,7 +3525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '114' x-powered-by: - ASP.NET status: @@ -3544,15 +3545,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3561,7 +3562,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:22 GMT + - Tue, 13 Jul 2021 14:22:47 GMT expires: - '-1' pragma: @@ -3577,7 +3578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '113' x-powered-by: - ASP.NET status: @@ -3597,15 +3598,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3614,7 +3615,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:23 GMT + - Tue, 13 Jul 2021 14:22:48 GMT expires: - '-1' pragma: @@ -3630,7 +3631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '112' x-powered-by: - ASP.NET status: @@ -3650,15 +3651,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3667,7 +3668,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:24 GMT + - Tue, 13 Jul 2021 14:22:49 GMT expires: - '-1' pragma: @@ -3683,7 +3684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '111' x-powered-by: - ASP.NET status: @@ -3703,15 +3704,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3720,7 +3721,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:25 GMT + - Tue, 13 Jul 2021 14:22:50 GMT expires: - '-1' pragma: @@ -3736,7 +3737,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '110' x-powered-by: - ASP.NET status: @@ -3756,15 +3757,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3773,7 +3774,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:27 GMT + - Tue, 13 Jul 2021 14:22:52 GMT expires: - '-1' pragma: @@ -3789,7 +3790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '109' x-powered-by: - ASP.NET status: @@ -3809,15 +3810,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3826,7 +3827,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:28 GMT + - Tue, 13 Jul 2021 14:22:53 GMT expires: - '-1' pragma: @@ -3842,7 +3843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '108' x-powered-by: - ASP.NET status: @@ -3862,15 +3863,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3879,7 +3880,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:29 GMT + - Tue, 13 Jul 2021 14:22:54 GMT expires: - '-1' pragma: @@ -3895,7 +3896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '107' x-powered-by: - ASP.NET status: @@ -3915,15 +3916,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3932,7 +3933,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:30 GMT + - Tue, 13 Jul 2021 14:22:56 GMT expires: - '-1' pragma: @@ -3948,7 +3949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '106' x-powered-by: - ASP.NET status: @@ -3968,15 +3969,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3985,7 +3986,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:31 GMT + - Tue, 13 Jul 2021 14:22:58 GMT expires: - '-1' pragma: @@ -4001,7 +4002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '105' x-powered-by: - ASP.NET status: @@ -4021,15 +4022,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4038,7 +4039,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:33 GMT + - Tue, 13 Jul 2021 14:22:59 GMT expires: - '-1' pragma: @@ -4054,7 +4055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '104' x-powered-by: - ASP.NET status: @@ -4074,15 +4075,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4091,7 +4092,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:35 GMT + - Tue, 13 Jul 2021 14:23:01 GMT expires: - '-1' pragma: @@ -4107,7 +4108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '103' x-powered-by: - ASP.NET status: @@ -4127,15 +4128,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4144,7 +4145,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:36 GMT + - Tue, 13 Jul 2021 14:23:02 GMT expires: - '-1' pragma: @@ -4160,7 +4161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '102' x-powered-by: - ASP.NET status: @@ -4180,15 +4181,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4197,7 +4198,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:37 GMT + - Tue, 13 Jul 2021 14:23:03 GMT expires: - '-1' pragma: @@ -4213,7 +4214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '101' x-powered-by: - ASP.NET status: @@ -4233,15 +4234,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4250,7 +4251,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:39 GMT + - Tue, 13 Jul 2021 14:23:04 GMT expires: - '-1' pragma: @@ -4266,7 +4267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' + - '100' x-powered-by: - ASP.NET status: @@ -4286,15 +4287,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4303,7 +4304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:40 GMT + - Tue, 13 Jul 2021 14:23:06 GMT expires: - '-1' pragma: @@ -4319,7 +4320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' + - '99' x-powered-by: - ASP.NET status: @@ -4339,15 +4340,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4356,7 +4357,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:41 GMT + - Tue, 13 Jul 2021 14:23:07 GMT expires: - '-1' pragma: @@ -4372,7 +4373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' + - '98' x-powered-by: - ASP.NET status: @@ -4392,15 +4393,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4409,7 +4410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:42 GMT + - Tue, 13 Jul 2021 14:23:08 GMT expires: - '-1' pragma: @@ -4425,7 +4426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' + - '97' x-powered-by: - ASP.NET status: @@ -4445,15 +4446,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4462,7 +4463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:43 GMT + - Tue, 13 Jul 2021 14:23:09 GMT expires: - '-1' pragma: @@ -4478,7 +4479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' + - '96' x-powered-by: - ASP.NET status: @@ -4498,15 +4499,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4515,7 +4516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:45 GMT + - Tue, 13 Jul 2021 14:23:10 GMT expires: - '-1' pragma: @@ -4531,7 +4532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' + - '95' x-powered-by: - ASP.NET status: @@ -4551,15 +4552,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4568,7 +4569,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:46 GMT + - Tue, 13 Jul 2021 14:23:12 GMT expires: - '-1' pragma: @@ -4584,7 +4585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' + - '94' x-powered-by: - ASP.NET status: @@ -4604,15 +4605,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4621,7 +4622,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:47 GMT + - Tue, 13 Jul 2021 14:23:13 GMT expires: - '-1' pragma: @@ -4637,7 +4638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' + - '93' x-powered-by: - ASP.NET status: @@ -4657,15 +4658,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4674,7 +4675,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:49 GMT + - Tue, 13 Jul 2021 14:23:14 GMT expires: - '-1' pragma: @@ -4690,7 +4691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' + - '92' x-powered-by: - ASP.NET status: @@ -4710,15 +4711,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4727,7 +4728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:50 GMT + - Tue, 13 Jul 2021 14:23:15 GMT expires: - '-1' pragma: @@ -4743,7 +4744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' + - '91' x-powered-by: - ASP.NET status: @@ -4763,15 +4764,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4780,7 +4781,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:51 GMT + - Tue, 13 Jul 2021 14:23:16 GMT expires: - '-1' pragma: @@ -4796,7 +4797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '90' x-powered-by: - ASP.NET status: @@ -4816,15 +4817,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4833,7 +4834,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:52 GMT + - Tue, 13 Jul 2021 14:23:18 GMT expires: - '-1' pragma: @@ -4849,7 +4850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' + - '89' x-powered-by: - ASP.NET status: @@ -4869,15 +4870,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4886,7 +4887,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:53 GMT + - Tue, 13 Jul 2021 14:23:19 GMT expires: - '-1' pragma: @@ -4902,7 +4903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '88' x-powered-by: - ASP.NET status: @@ -4922,15 +4923,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4939,7 +4940,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:55 GMT + - Tue, 13 Jul 2021 14:23:20 GMT expires: - '-1' pragma: @@ -4955,7 +4956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '87' x-powered-by: - ASP.NET status: @@ -4975,15 +4976,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4992,7 +4993,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:56 GMT + - Tue, 13 Jul 2021 14:23:21 GMT expires: - '-1' pragma: @@ -5008,7 +5009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' + - '86' x-powered-by: - ASP.NET status: @@ -5028,15 +5029,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5045,7 +5046,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:57 GMT + - Tue, 13 Jul 2021 14:23:22 GMT expires: - '-1' pragma: @@ -5061,7 +5062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' + - '85' x-powered-by: - ASP.NET status: @@ -5081,15 +5082,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"InProgress","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5098,7 +5099,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:58 GMT + - Tue, 13 Jul 2021 14:23:23 GMT expires: - '-1' pragma: @@ -5114,7 +5115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' + - '84' x-powered-by: - ASP.NET status: @@ -5134,24 +5135,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/de15e4b9-780f-4668-8b69-ec096faf23e7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"de15e4b9-780f-4668-8b69-ec096faf23e7","name":"de15e4b9-780f-4668-8b69-ec096faf23e7","status":"Succeeded","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"2021-06-21T13:03:37.8239287Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2cfc12cf-8a09-49dd-9fbd-2718231bb283"}}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:59 GMT + - Tue, 13 Jul 2021 14:23:25 GMT expires: - '-1' pragma: @@ -5167,7 +5168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' + - '83' x-powered-by: - ASP.NET status: @@ -5187,32 +5188,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2cfc12cf-8a09-49dd-9fbd-2718231bb283?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2cfc12cf-8a09-49dd-9fbd-2718231bb283","name":"2cfc12cf-8a09-49dd-9fbd-2718231bb283","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M21.9719821S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"2021-06-21T13:04:59.7959108Z","activityId":"0ec546be-d291-11eb-8328-c8f750f92764"}}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:04:59 GMT + - Tue, 13 Jul 2021 14:23: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: @@ -5222,7 +5221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '82' x-powered-by: - ASP.NET status: @@ -5236,30 +5235,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"17592726318664","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1988' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:00 GMT + - Tue, 13 Jul 2021 14:23:27 GMT expires: - '-1' pragma: @@ -5275,66 +5274,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '81' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","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/09233128-51fa-45b0-8c32-efe5b15012a3?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 13:05:01 GMT + - Tue, 13 Jul 2021 14:23: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/09233128-51fa-45b0-8c32-efe5b15012a3?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5343,21 +5341,21 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/09233128-51fa-45b0-8c32-efe5b15012a3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"09233128-51fa-45b0-8c32-efe5b15012a3","name":"09233128-51fa-45b0-8c32-efe5b15012a3","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5366,7 +5364,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:02 GMT + - Tue, 13 Jul 2021 14:23:31 GMT expires: - '-1' pragma: @@ -5382,7 +5380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '79' x-powered-by: - ASP.NET status: @@ -5396,30 +5394,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/09233128-51fa-45b0-8c32-efe5b15012a3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"09233128-51fa-45b0-8c32-efe5b15012a3","name":"09233128-51fa-45b0-8c32-efe5b15012a3","status":"Succeeded","startTime":"2021-06-21T13:05:02.2439811Z","endTime":"2021-06-21T13:05:02.2439811Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf"}}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:03 GMT + - Tue, 13 Jul 2021 14:23:32 GMT expires: - '-1' pragma: @@ -5435,7 +5433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '78' x-powered-by: - ASP.NET status: @@ -5449,40 +5447,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.9539944S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"InProgress","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:04 GMT + - Tue, 13 Jul 2021 14:23: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: @@ -5492,7 +5486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '77' x-powered-by: - ASP.NET status: @@ -5506,40 +5500,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10abe5ba-1d61-451d-8519-ff449c8d6b54?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.80234S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + string: '{"id":"10abe5ba-1d61-451d-8519-ff449c8d6b54","name":"10abe5ba-1d61-451d-8519-ff449c8d6b54","status":"Succeeded","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"2021-07-13T14:22:02.0055669Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"36ba949c-ebd2-402d-9cdd-421b22152574"}}' headers: cache-control: - no-cache content-length: - - '1154' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:05 GMT + - Tue, 13 Jul 2021 14:23: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: @@ -5549,7 +5539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '76' x-powered-by: - ASP.NET status: @@ -5563,33 +5553,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36ba949c-ebd2-402d-9cdd-421b22152574?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.1944138S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36ba949c-ebd2-402d-9cdd-421b22152574","name":"36ba949c-ebd2-402d-9cdd-421b22152574","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.7997673S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"2021-07-13T14:23:33.8053342Z","activityId":"a6a889c6-e3e5-11eb-a6f6-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '970' content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:05 GMT + - Tue, 13 Jul 2021 14:23:35 GMT expires: - '-1' pragma: @@ -5606,7 +5594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -5620,40 +5608,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.6758915S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + 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":"35185711133226","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1157' + - '1988' content-type: - application/json date: - - Mon, 21 Jun 2021 13:05:35 GMT + - Tue, 13 Jul 2021 14:23: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: @@ -5663,69 +5647,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-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/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.161239S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + string: '' headers: + 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/1736ebba-77bc-4458-a384-655af63999b5?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1157' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 13:06:06 GMT + - Tue, 13 Jul 2021 14:23: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/1736ebba-77bc-4458-a384-655af63999b5?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + 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: @@ -5734,40 +5715,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1736ebba-77bc-4458-a384-655af63999b5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M37.268047S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + string: '{"id":"1736ebba-77bc-4458-a384-655af63999b5","name":"1736ebba-77bc-4458-a384-655af63999b5","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:06:41 GMT + - Tue, 13 Jul 2021 14:23: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: @@ -5777,7 +5754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -5791,33 +5768,86 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1736ebba-77bc-4458-a384-655af63999b5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M9.4007419S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + string: '{"id":"1736ebba-77bc-4458-a384-655af63999b5","name":"1736ebba-77bc-4458-a384-655af63999b5","status":"Succeeded","startTime":"2021-07-13T14:23:41.7942036Z","endTime":"2021-07-13T14:23:41.7942036Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"77f710a9-bd3c-495f-8ae8-b75f42eb5351"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 13:07:12 GMT + - Tue, 13 Jul 2021 14:23: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0841768S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 14:23:43 GMT expires: - '-1' pragma: @@ -5834,7 +5864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '136' x-powered-by: - ASP.NET status: @@ -5854,27 +5884,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M39.8294206S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.725345S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1155' content-type: - application/json date: - - Mon, 21 Jun 2021 13:07:42 GMT + - Tue, 13 Jul 2021 14:23:44 GMT expires: - '-1' pragma: @@ -5891,7 +5921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: @@ -5911,27 +5941,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M10.2185015S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.1155S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1153' content-type: - application/json date: - - Mon, 21 Jun 2021 13:08:12 GMT + - Tue, 13 Jul 2021 14:23:44 GMT expires: - '-1' pragma: @@ -5948,7 +5978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '148' x-powered-by: - ASP.NET status: @@ -5968,27 +5998,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M40.6617295S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.5189873S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 13:08:43 GMT + - Tue, 13 Jul 2021 14:24:15 GMT expires: - '-1' pragma: @@ -6005,7 +6035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '147' x-powered-by: - ASP.NET status: @@ -6025,27 +6055,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M11.0540225S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.9544941S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:09:13 GMT + - Tue, 13 Jul 2021 14:24:45 GMT expires: - '-1' pragma: @@ -6062,7 +6092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '146' x-powered-by: - ASP.NET status: @@ -6082,27 +6112,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M41.5847189S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.38213S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 13:09:43 GMT + - Tue, 13 Jul 2021 14:25:15 GMT expires: - '-1' pragma: @@ -6119,7 +6149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '145' x-powered-by: - ASP.NET status: @@ -6139,27 +6169,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M12.0036325S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.0920461S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:10:14 GMT + - Tue, 13 Jul 2021 14:25:47 GMT expires: - '-1' pragma: @@ -6176,7 +6206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '144' x-powered-by: - ASP.NET status: @@ -6196,18 +6226,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M42.4336177S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.4774243S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6216,7 +6246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:10:44 GMT + - Tue, 13 Jul 2021 14:26:17 GMT expires: - '-1' pragma: @@ -6233,7 +6263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '143' x-powered-by: - ASP.NET status: @@ -6253,27 +6283,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M12.9160974S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.8878971S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:11:15 GMT + - Tue, 13 Jul 2021 14:26:47 GMT expires: - '-1' pragma: @@ -6290,7 +6320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '142' x-powered-by: - ASP.NET status: @@ -6310,18 +6340,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M54.4223907S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.3321129S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6330,7 +6360,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:11:56 GMT + - Tue, 13 Jul 2021 14:27:18 GMT expires: - '-1' pragma: @@ -6347,7 +6377,64 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '141' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M6.8306132S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 14:27: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: + - '140' x-powered-by: - ASP.NET status: @@ -6367,18 +6454,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M24.9418606S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.2809827S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6387,7 +6474,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:12:27 GMT + - Tue, 13 Jul 2021 14:28:18 GMT expires: - '-1' pragma: @@ -6404,7 +6491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '139' x-powered-by: - ASP.NET status: @@ -6424,18 +6511,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M55.4038556S","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/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M7.7106897S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6444,7 +6531,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:12:57 GMT + - Tue, 13 Jul 2021 14:28:49 GMT expires: - '-1' pragma: @@ -6461,7 +6548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '138' x-powered-by: - ASP.NET status: @@ -6481,18 +6568,75 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M25.8840203S","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/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M38.1947488S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 14:29: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: + - '137' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M8.6630161S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6501,7 +6645,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:13:28 GMT + - Tue, 13 Jul 2021 14:29:49 GMT expires: - '-1' pragma: @@ -6518,7 +6662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '136' x-powered-by: - ASP.NET status: @@ -6538,18 +6682,75 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M56.3164568S","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/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M39.1936117S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 14:30: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: + - '135' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M9.6245215S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6558,7 +6759,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:13:58 GMT + - Tue, 13 Jul 2021 14:30:51 GMT expires: - '-1' pragma: @@ -6575,7 +6776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '134' x-powered-by: - ASP.NET status: @@ -6595,27 +6796,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M26.808759S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M40.3458425S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:14:28 GMT + - Tue, 13 Jul 2021 14:31:21 GMT expires: - '-1' pragma: @@ -6632,7 +6833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '133' x-powered-by: - ASP.NET status: @@ -6652,27 +6853,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M57.274474S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M11.8864577S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:14:59 GMT + - Tue, 13 Jul 2021 14:31:53 GMT expires: - '-1' pragma: @@ -6689,7 +6890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '132' x-powered-by: - ASP.NET status: @@ -6709,27 +6910,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M27.8289979S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M42.3942651S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:15:30 GMT + - Tue, 13 Jul 2021 14:32:24 GMT expires: - '-1' pragma: @@ -6746,7 +6947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '131' x-powered-by: - ASP.NET status: @@ -6766,27 +6967,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M58.2983438S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M13.0461089S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:16:00 GMT + - Tue, 13 Jul 2021 14:32:54 GMT expires: - '-1' pragma: @@ -6803,7 +7004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '130' x-powered-by: - ASP.NET status: @@ -6823,27 +7024,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M28.9187944S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M43.4895436S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:16:30 GMT + - Tue, 13 Jul 2021 14:33:25 GMT expires: - '-1' pragma: @@ -6860,7 +7061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '129' x-powered-by: - ASP.NET status: @@ -6880,18 +7081,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M59.4016666S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M13.9513514S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6900,7 +7101,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:17:02 GMT + - Tue, 13 Jul 2021 14:33:55 GMT expires: - '-1' pragma: @@ -6917,7 +7118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '128' x-powered-by: - ASP.NET status: @@ -6937,27 +7138,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M29.8056714S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M44.500801S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:17:32 GMT + - Tue, 13 Jul 2021 14:34:26 GMT expires: - '-1' pragma: @@ -6974,7 +7175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '127' x-powered-by: - ASP.NET status: @@ -6994,27 +7195,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M0.247766S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M14.9336658S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:18:02 GMT + - Tue, 13 Jul 2021 14:34:56 GMT expires: - '-1' pragma: @@ -7031,7 +7232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '126' x-powered-by: - ASP.NET status: @@ -7051,18 +7252,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M31.1644658S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M45.3444473S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7071,7 +7272,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:18:33 GMT + - Tue, 13 Jul 2021 14:35:27 GMT expires: - '-1' pragma: @@ -7088,7 +7289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '125' x-powered-by: - ASP.NET status: @@ -7108,27 +7309,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M1.6089859S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M15.8068886S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:19:03 GMT + - Tue, 13 Jul 2021 14:35:57 GMT expires: - '-1' pragma: @@ -7145,7 +7346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '124' x-powered-by: - ASP.NET status: @@ -7165,18 +7366,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M32.1940587S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M46.2001201S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7185,7 +7386,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:19:35 GMT + - Tue, 13 Jul 2021 14:36:27 GMT expires: - '-1' pragma: @@ -7202,7 +7403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '123' x-powered-by: - ASP.NET status: @@ -7222,27 +7423,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M2.6820101S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M16.8769586S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:20:05 GMT + - Tue, 13 Jul 2021 14:36:58 GMT expires: - '-1' pragma: @@ -7259,7 +7460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '122' x-powered-by: - ASP.NET status: @@ -7279,18 +7480,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M33.2636265S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M47.2786241S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7299,7 +7500,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:20:35 GMT + - Tue, 13 Jul 2021 14:37:29 GMT expires: - '-1' pragma: @@ -7316,7 +7517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '121' x-powered-by: - ASP.NET status: @@ -7336,27 +7537,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M3.729828S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M18.4605796S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:21:06 GMT + - Tue, 13 Jul 2021 14:37:59 GMT expires: - '-1' pragma: @@ -7373,7 +7574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '120' x-powered-by: - ASP.NET status: @@ -7393,18 +7594,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M34.1648038S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M48.9637421S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7413,7 +7614,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:21:36 GMT + - Tue, 13 Jul 2021 14:38:31 GMT expires: - '-1' pragma: @@ -7430,7 +7631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '119' x-powered-by: - ASP.NET status: @@ -7450,27 +7651,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M4.6696306S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M19.3522102S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:22:07 GMT + - Tue, 13 Jul 2021 14:39:01 GMT expires: - '-1' pragma: @@ -7487,7 +7688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '118' x-powered-by: - ASP.NET status: @@ -7507,18 +7708,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M35.0945219S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M49.7635124S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7527,7 +7728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:22:37 GMT + - Tue, 13 Jul 2021 14:39:31 GMT expires: - '-1' pragma: @@ -7544,7 +7745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '117' x-powered-by: - ASP.NET status: @@ -7564,27 +7765,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M5.5222364S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M20.1836865S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:23:08 GMT + - Tue, 13 Jul 2021 14:40:02 GMT expires: - '-1' pragma: @@ -7601,7 +7802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '116' x-powered-by: - ASP.NET status: @@ -7621,18 +7822,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M36.7812659S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M50.6292027S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7641,7 +7842,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:23:38 GMT + - Tue, 13 Jul 2021 14:40:32 GMT expires: - '-1' pragma: @@ -7658,7 +7859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '115' x-powered-by: - ASP.NET status: @@ -7678,27 +7879,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M7.1771394S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M21.1890194S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:24:09 GMT + - Tue, 13 Jul 2021 14:41:02 GMT expires: - '-1' pragma: @@ -7715,7 +7916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '114' x-powered-by: - ASP.NET status: @@ -7735,18 +7936,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M37.6784756S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M51.6501589S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7755,7 +7956,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:24:40 GMT + - Tue, 13 Jul 2021 14:41:33 GMT expires: - '-1' pragma: @@ -7772,7 +7973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '113' x-powered-by: - ASP.NET status: @@ -7792,27 +7993,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M8.1958642S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M22.0762274S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:25:11 GMT + - Tue, 13 Jul 2021 14:42:03 GMT expires: - '-1' pragma: @@ -7829,7 +8030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '112' x-powered-by: - ASP.NET status: @@ -7849,18 +8050,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M39.5760364S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M52.8435857S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7869,7 +8070,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:25:42 GMT + - Tue, 13 Jul 2021 14:42:35 GMT expires: - '-1' pragma: @@ -7886,7 +8087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '111' x-powered-by: - ASP.NET status: @@ -7906,18 +8107,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M10.0164052S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M23.3090122S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7926,7 +8127,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:26:12 GMT + - Tue, 13 Jul 2021 14:43:05 GMT expires: - '-1' pragma: @@ -7943,7 +8144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '110' x-powered-by: - ASP.NET status: @@ -7963,18 +8164,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M40.8467409S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M53.7203877S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7983,7 +8184,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:26:42 GMT + - Tue, 13 Jul 2021 14:43:35 GMT expires: - '-1' pragma: @@ -8000,7 +8201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '109' x-powered-by: - ASP.NET status: @@ -8020,18 +8221,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M11.2893675S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M24.1435018S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8040,7 +8241,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:27:13 GMT + - Tue, 13 Jul 2021 14:44:06 GMT expires: - '-1' pragma: @@ -8057,7 +8258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '108' x-powered-by: - ASP.NET status: @@ -8077,27 +8278,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M43.2897105S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M54.553179S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:27:45 GMT + - Tue, 13 Jul 2021 14:44:36 GMT expires: - '-1' pragma: @@ -8114,7 +8315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '107' x-powered-by: - ASP.NET status: @@ -8134,18 +8335,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M13.7126887S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M24.9944791S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8154,7 +8355,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:28:16 GMT + - Tue, 13 Jul 2021 14:45:06 GMT expires: - '-1' pragma: @@ -8171,7 +8372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '106' x-powered-by: - ASP.NET status: @@ -8191,18 +8392,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M44.4152457S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M55.4391282S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8211,7 +8412,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:28:46 GMT + - Tue, 13 Jul 2021 14:45:37 GMT expires: - '-1' pragma: @@ -8228,7 +8429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '105' x-powered-by: - ASP.NET status: @@ -8248,18 +8449,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M14.9426338S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M25.8793031S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8268,7 +8469,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:29:16 GMT + - Tue, 13 Jul 2021 14:46:07 GMT expires: - '-1' pragma: @@ -8285,7 +8486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '104' x-powered-by: - ASP.NET status: @@ -8305,18 +8506,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M45.3783494S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M56.3177565S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8325,7 +8526,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:29:47 GMT + - Tue, 13 Jul 2021 14:46:37 GMT expires: - '-1' pragma: @@ -8342,7 +8543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '103' x-powered-by: - ASP.NET status: @@ -8362,27 +8563,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M15.920436S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M26.8102914S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:30:17 GMT + - Tue, 13 Jul 2021 14:47:08 GMT expires: - '-1' pragma: @@ -8399,7 +8600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '102' x-powered-by: - ASP.NET status: @@ -8419,27 +8620,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M46.3419825S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M57.254319S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:30:48 GMT + - Tue, 13 Jul 2021 14:47:38 GMT expires: - '-1' pragma: @@ -8456,7 +8657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '101' x-powered-by: - ASP.NET status: @@ -8476,18 +8677,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M16.7946266S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M27.6825321S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8496,7 +8697,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:31:19 GMT + - Tue, 13 Jul 2021 14:48:09 GMT expires: - '-1' pragma: @@ -8513,7 +8714,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '100' x-powered-by: - ASP.NET status: @@ -8533,18 +8734,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M47.3153102S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M58.1667935S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8553,7 +8754,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:31:49 GMT + - Tue, 13 Jul 2021 14:48:40 GMT expires: - '-1' pragma: @@ -8570,7 +8771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '99' x-powered-by: - ASP.NET status: @@ -8590,18 +8791,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M17.9779484S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M28.5522614S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8610,7 +8811,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:32:20 GMT + - Tue, 13 Jul 2021 14:49:10 GMT expires: - '-1' pragma: @@ -8627,7 +8828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '98' x-powered-by: - ASP.NET status: @@ -8647,18 +8848,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M48.5684312S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M59.0034493S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8667,7 +8868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:32:50 GMT + - Tue, 13 Jul 2021 14:49:40 GMT expires: - '-1' pragma: @@ -8684,7 +8885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '97' x-powered-by: - ASP.NET status: @@ -8704,27 +8905,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M19.0363557S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M29.446705S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:33:21 GMT + - Tue, 13 Jul 2021 14:50:11 GMT expires: - '-1' pragma: @@ -8741,7 +8942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '96' x-powered-by: - ASP.NET status: @@ -8761,18 +8962,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M49.5563576S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M59.9785825S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8781,7 +8982,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:33:52 GMT + - Tue, 13 Jul 2021 14:50:41 GMT expires: - '-1' pragma: @@ -8798,7 +8999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '95' x-powered-by: - ASP.NET status: @@ -8818,18 +9019,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M20.5087865S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M30.3942983S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8838,7 +9039,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:34:22 GMT + - Tue, 13 Jul 2021 14:51:11 GMT expires: - '-1' pragma: @@ -8855,7 +9056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '94' x-powered-by: - ASP.NET status: @@ -8875,27 +9076,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M51.1306224S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M0.8048459S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:34:54 GMT + - Tue, 13 Jul 2021 14:51:42 GMT expires: - '-1' pragma: @@ -8912,7 +9113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '93' x-powered-by: - ASP.NET status: @@ -8932,18 +9133,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M21.7579171S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M31.2084098S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8952,7 +9153,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:35:24 GMT + - Tue, 13 Jul 2021 14:52:12 GMT expires: - '-1' pragma: @@ -8969,7 +9170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '92' x-powered-by: - ASP.NET status: @@ -8989,27 +9190,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M52.261677S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M1.667819S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 13:35:54 GMT + - Tue, 13 Jul 2021 14:52:43 GMT expires: - '-1' pragma: @@ -9026,7 +9227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '91' x-powered-by: - ASP.NET status: @@ -9046,18 +9247,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M22.7942336S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M32.3408253S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9066,7 +9267,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:36:25 GMT + - Tue, 13 Jul 2021 14:53:14 GMT expires: - '-1' pragma: @@ -9083,7 +9284,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '90' x-powered-by: - ASP.NET status: @@ -9103,27 +9304,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M53.2363177S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M19.66071S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 13:36:56 GMT + - Tue, 13 Jul 2021 14:54:01 GMT expires: - '-1' pragma: @@ -9140,7 +9341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '89' x-powered-by: - ASP.NET status: @@ -9160,27 +9361,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M24.2702345S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M7.224871S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 13:37:26 GMT + - Tue, 13 Jul 2021 14:54:50 GMT expires: - '-1' pragma: @@ -9197,7 +9398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '88' x-powered-by: - ASP.NET status: @@ -9217,18 +9418,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M54.5951914S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M39.1071576S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9237,7 +9438,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:37:56 GMT + - Tue, 13 Jul 2021 14:55:20 GMT expires: - '-1' pragma: @@ -9254,7 +9455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '87' x-powered-by: - ASP.NET status: @@ -9274,18 +9475,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M25.1313703S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M49.7532551S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9294,7 +9495,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:38:27 GMT + - Tue, 13 Jul 2021 14:56:31 GMT expires: - '-1' pragma: @@ -9311,7 +9512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '86' x-powered-by: - ASP.NET status: @@ -9331,27 +9532,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M55.57373S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M20.206567S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 13:38:58 GMT + - Tue, 13 Jul 2021 14:57:01 GMT expires: - '-1' pragma: @@ -9368,7 +9569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '85' x-powered-by: - ASP.NET status: @@ -9388,18 +9589,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M26.0478492S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M50.6234804S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9408,7 +9609,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:39:27 GMT + - Tue, 13 Jul 2021 14:57:32 GMT expires: - '-1' pragma: @@ -9425,7 +9626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '84' x-powered-by: - ASP.NET status: @@ -9445,18 +9646,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M56.4806136S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M21.0277834S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9465,7 +9666,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:39:58 GMT + - Tue, 13 Jul 2021 14:58:02 GMT expires: - '-1' pragma: @@ -9482,7 +9683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '83' x-powered-by: - ASP.NET status: @@ -9502,18 +9703,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M27.3726527S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M51.4234894S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9522,7 +9723,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:40:29 GMT + - Tue, 13 Jul 2021 14:58:32 GMT expires: - '-1' pragma: @@ -9539,7 +9740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '82' x-powered-by: - ASP.NET status: @@ -9559,18 +9760,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M57.9456929S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M22.0302667S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9579,7 +9780,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:41:00 GMT + - Tue, 13 Jul 2021 14:59:04 GMT expires: - '-1' pragma: @@ -9596,7 +9797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '81' x-powered-by: - ASP.NET status: @@ -9616,18 +9817,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M28.3143648S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M52.5444007S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9636,7 +9837,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:41:30 GMT + - Tue, 13 Jul 2021 14:59:34 GMT expires: - '-1' pragma: @@ -9653,7 +9854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '80' x-powered-by: - ASP.NET status: @@ -9673,27 +9874,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M58.6847808S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M23.05389S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 13:42:01 GMT + - Tue, 13 Jul 2021 15:00:04 GMT expires: - '-1' pragma: @@ -9710,7 +9911,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '79' x-powered-by: - ASP.NET status: @@ -9730,18 +9931,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M29.1116514S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M53.5044056S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9750,7 +9951,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:42:31 GMT + - Tue, 13 Jul 2021 15:00:35 GMT expires: - '-1' pragma: @@ -9767,7 +9968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '78' x-powered-by: - ASP.NET status: @@ -9787,18 +9988,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M59.6890881S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M24.8309804S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9807,7 +10008,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:43:01 GMT + - Tue, 13 Jul 2021 15:01:06 GMT expires: - '-1' pragma: @@ -9824,7 +10025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '77' x-powered-by: - ASP.NET status: @@ -9844,18 +10045,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M30.2797608S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M22.9757702S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9864,7 +10065,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:43:32 GMT + - Tue, 13 Jul 2021 15:02:06 GMT expires: - '-1' pragma: @@ -9881,7 +10082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '76' x-powered-by: - ASP.NET status: @@ -9901,27 +10102,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M0.7532667S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M54.8683036S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:44:02 GMT + - Tue, 13 Jul 2021 15:02:36 GMT expires: - '-1' pragma: @@ -9938,7 +10139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '75' x-powered-by: - ASP.NET status: @@ -9958,27 +10159,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M31.264262S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M25.3167487S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:44:33 GMT + - Tue, 13 Jul 2021 15:03:07 GMT expires: - '-1' pragma: @@ -9995,7 +10196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '74' x-powered-by: - ASP.NET status: @@ -10015,27 +10216,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M1.8113562S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M55.7415625S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:45:04 GMT + - Tue, 13 Jul 2021 15:03:37 GMT expires: - '-1' pragma: @@ -10052,7 +10253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '73' x-powered-by: - ASP.NET status: @@ -10072,18 +10273,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M32.2689898S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M26.2041469S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10092,7 +10293,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:45:34 GMT + - Tue, 13 Jul 2021 15:04:09 GMT expires: - '-1' pragma: @@ -10109,7 +10310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '72' x-powered-by: - ASP.NET status: @@ -10129,27 +10330,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M2.6696832S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M57.7970919S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T13:05:02.2439811Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:23:41.7942036Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 13:46:04 GMT + - Tue, 13 Jul 2021 15:04:39 GMT expires: - '-1' pragma: @@ -10166,7 +10367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '71' x-powered-by: - ASP.NET status: @@ -10186,18 +10387,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M11.9807821S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M12.5910762S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-21T13:05:02.2439811Z","endTime":"2021-06-21T13:46:14.2247632Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T14:23:41.7942036Z","endTime":"2021-07-13T15:04:54.3852798Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10206,7 +10407,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:46:35 GMT + - Tue, 13 Jul 2021 15:05:09 GMT expires: - '-1' pragma: @@ -10223,7 +10424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '70' x-powered-by: - ASP.NET status: @@ -10243,8 +10444,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10252,7 +10453,7 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T13:05:02.2439811Z","protectedItemDataId":"17592726318664","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:05:05.7852342Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T14:23:41.7942036Z","protectedItemDataId":"35185711133226","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-07-13T14:23:45.5288345Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -10261,7 +10462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:31 GMT + - Tue, 13 Jul 2021 15:06:07 GMT expires: - '-1' pragma: @@ -10297,15 +10498,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/11942081606044","name":"11942081606044","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T13:05:05.7852342Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/142531935230","name":"142531935230","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:23:45.5288345Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}]}' @@ -10313,11 +10514,11 @@ interactions: cache-control: - no-cache content-length: - - '1463' + - '1459' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:32 GMT + - Tue, 13 Jul 2021 15:06:07 GMT expires: - '-1' pragma: @@ -10353,8 +10554,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10362,7 +10563,7 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T13:05:02.2439811Z","protectedItemDataId":"17592726318664","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:05:05.7852342Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T14:23:41.7942036Z","protectedItemDataId":"35185711133226","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-07-13T14:23:45.5288345Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -10371,7 +10572,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:33 GMT + - Tue, 13 Jul 2021 15:06:08 GMT expires: - '-1' pragma: @@ -10387,7 +10588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -10407,8 +10608,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10424,7 +10625,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:33 GMT + - Tue, 13 Jul 2021 15:06:09 GMT expires: - '-1' pragma: @@ -10440,7 +10641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -10460,8 +10661,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10469,7 +10670,7 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T13:05:02.2439811Z","protectedItemDataId":"17592726318664","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:05:05.7852342Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T14:23:41.7942036Z","protectedItemDataId":"35185711133226","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-07-13T14:23:45.5288345Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -10478,7 +10679,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:33 GMT + - Tue, 13 Jul 2021 15:06:08 GMT expires: - '-1' pragma: @@ -10514,8 +10715,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -10531,7 +10732,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:34 GMT + - Tue, 13 Jul 2021 15:06:10 GMT expires: - '-1' pragma: @@ -10567,15 +10768,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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/11942081606044?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/142531935230?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/11942081606044","name":"11942081606044","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T13:05:05.7852342Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/142531935230","name":"142531935230","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:23:45.5288345Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -10583,11 +10784,11 @@ interactions: cache-control: - no-cache content-length: - - '1451' + - '1447' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:35 GMT + - Tue, 13 Jul 2021 15:06:10 GMT expires: - '-1' pragma: @@ -10623,12 +10824,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T13%3A02%3A16.1940804Z''\"","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-07-13T14%3A20%3A40.6317154Z''\"","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 @@ -10637,7 +10838,56 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:35 GMT + - Tue, 13 Jul 2021 15:06: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 + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:06:11 GMT expires: - '-1' pragma: @@ -10652,6 +10902,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 @@ -10669,7 +10923,7 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000006?api-version=2015-12-01 response: @@ -10685,7 +10939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 13:47:36 GMT + - Tue, 13 Jul 2021 15:06:11 GMT expires: - '-1' pragma: @@ -10713,12 +10967,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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":"2021-06-21T13:47:08.1635894Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T13:47:08.0698248Z","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-07-13T15:05:43.0949357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T15:05:43.0168131Z","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 @@ -10727,7 +10981,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:36 GMT + - Tue, 13 Jul 2021 15:06:11 GMT expires: - '-1' pragma: @@ -10747,7 +11001,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "11942081606044", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "142531935230", "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}}' @@ -10761,34 +11015,34 @@ interactions: Connection: - keep-alive Content-Length: - - '681' + - '679' Content-Type: - application/json; charset=utf-8 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/11942081606044/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/142531935230/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/36260bcd-ba71-4293-9ed3-7a1dcdc6812e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/0f2f3a52-a754-4247-8223-0172caf3f080?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 13:47:36 GMT + - Tue, 13 Jul 2021 15:06: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/36260bcd-ba71-4293-9ed3-7a1dcdc6812e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/0f2f3a52-a754-4247-8223-0172caf3f080?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -10816,15 +11070,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/36260bcd-ba71-4293-9ed3-7a1dcdc6812e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0f2f3a52-a754-4247-8223-0172caf3f080?api-version=2021-01-01 response: body: - string: '{"id":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10833,7 +11087,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:37 GMT + - Tue, 13 Jul 2021 15:06:13 GMT expires: - '-1' pragma: @@ -10849,7 +11103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -10869,15 +11123,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/36260bcd-ba71-4293-9ed3-7a1dcdc6812e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0f2f3a52-a754-4247-8223-0172caf3f080?api-version=2021-01-01 response: body: - string: '{"id":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","status":"Succeeded","startTime":"2021-06-21T13:47:37.4372407Z","endTime":"2021-06-21T13:47:37.4372407Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e"}}' + string: '{"id":"0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","status":"Succeeded","startTime":"2021-07-13T15:06:13.2926259Z","endTime":"2021-07-13T15:06:13.2926259Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0f2f3a52-a754-4247-8223-0172caf3f080"}}' headers: cache-control: - no-cache @@ -10886,7 +11140,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:38 GMT + - Tue, 13 Jul 2021 15:06:14 GMT expires: - '-1' pragma: @@ -10902,7 +11156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -10922,18 +11176,18 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0857803S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0313252S","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":"clitest000006","Recovery - point time ":"6/21/2021 1:05:05 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","activityId":"3a7d06ab-d297-11eb-b2d3-c8f750f92764"}}' + point time ":"7/13/2021 2:23:45 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","activityId":"d8ed9a5e-e3eb-11eb-ba13-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10942,7 +11196,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:40 GMT + - Tue, 13 Jul 2021 15:06:17 GMT expires: - '-1' pragma: @@ -10979,18 +11233,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.9551042S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9.2384727S","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":"clitest000006","Recovery - point time ":"6/21/2021 1:05:05 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","activityId":"3a7d06ab-d297-11eb-b2d3-c8f750f92764"}}' + point time ":"7/13/2021 2:23:45 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","activityId":"d8ed9a5e-e3eb-11eb-ba13-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10999,7 +11253,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:40 GMT + - Tue, 13 Jul 2021 15:06:23 GMT expires: - '-1' pragma: @@ -11036,24 +11290,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-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=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.9489385S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","activityId":"3a7d06ab-d297-11eb-b2d3-c8f750f92764"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","name":"80cb64c5-93e9-41c9-88d8-f41fd6ec7bcf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M11.9807821S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-21T13:05:02.2439811Z","endTime":"2021-06-21T13:46:14.2247632Z","activityId":"492ed3e5-d291-11eb-a071-c8f750f92764"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2cfc12cf-8a09-49dd-9fbd-2718231bb283","name":"2cfc12cf-8a09-49dd-9fbd-2718231bb283","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M21.9719821S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T13:03:37.8239287Z","endTime":"2021-06-21T13:04:59.7959108Z","activityId":"0ec546be-d291-11eb-8328-c8f750f92764"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.0131525S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","activityId":"d8ed9a5e-e3eb-11eb-ba13-00155ddc6812"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/77f710a9-bd3c-495f-8ae8-b75f42eb5351","name":"77f710a9-bd3c-495f-8ae8-b75f42eb5351","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M12.5910762S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T14:23:41.7942036Z","endTime":"2021-07-13T15:04:54.3852798Z","activityId":"e72a209e-e3e5-11eb-8a27-00155ddc6812"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36ba949c-ebd2-402d-9cdd-421b22152574","name":"36ba949c-ebd2-402d-9cdd-421b22152574","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.7997673S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:22:02.0055669Z","endTime":"2021-07-13T14:23:33.8053342Z","activityId":"a6a889c6-e3e5-11eb-a6f6-00155ddc6812"}}]}' headers: cache-control: - no-cache content-length: - - '2583' + - '2584' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:41 GMT + - Tue, 13 Jul 2021 15:06:24 GMT expires: - '-1' pragma: @@ -11090,24 +11344,24 @@ interactions: ParameterSetName: - -g -v --status User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-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=2021-01-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/36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.3371431S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","activityId":"3a7d06ab-d297-11eb-b2d3-c8f750f92764"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.4194264S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","activityId":"d8ed9a5e-e3eb-11eb-ba13-00155ddc6812"}}]}' headers: cache-control: - no-cache content-length: - - '843' + - '844' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:41 GMT + - Tue, 13 Jul 2021 15:06:24 GMT expires: - '-1' pragma: @@ -11124,7 +11378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -11144,24 +11398,24 @@ interactions: ParameterSetName: - -g -v --operation User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-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=2021-01-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/36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.6771569S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","activityId":"3a7d06ab-d297-11eb-b2d3-c8f750f92764"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.8463333S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","activityId":"d8ed9a5e-e3eb-11eb-ba13-00155ddc6812"}}]}' headers: cache-control: - no-cache content-length: - - '843' + - '844' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:41 GMT + - Tue, 13 Jul 2021 15:06:24 GMT expires: - '-1' pragma: @@ -11178,7 +11432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '69' x-powered-by: - ASP.NET status: @@ -11198,24 +11452,24 @@ interactions: ParameterSetName: - -g -v --operation --status User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-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=2021-01-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/36260bcd-ba71-4293-9ed3-7a1dcdc6812e","name":"36260bcd-ba71-4293-9ed3-7a1dcdc6812e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5.126807S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T13:47:37.4372407Z","activityId":"3a7d06ab-d297-11eb-b2d3-c8f750f92764"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080","name":"0f2f3a52-a754-4247-8223-0172caf3f080","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12.282574S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:06:13.2926259Z","activityId":"d8ed9a5e-e3eb-11eb-ba13-00155ddc6812"}}]}' headers: cache-control: - no-cache content-length: - - '842' + - '843' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:42 GMT + - Tue, 13 Jul 2021 15:06:25 GMT expires: - '-1' pragma: @@ -11232,7 +11486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '125' x-powered-by: - ASP.NET status: @@ -11254,28 +11508,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/36260bcd-ba71-4293-9ed3-7a1dcdc6812e/cancel?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080/cancel?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e/operationsStatus/ab7029ac-19ed-4956-b250-29a876c26ee2?api-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/0f2f3a52-a754-4247-8223-0172caf3f080/operationsStatus/0c91b132-dc1d-409a-b8b8-6f7edbf7e7cf?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 13:47:42 GMT + - Tue, 13 Jul 2021 15:06:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/36260bcd-ba71-4293-9ed3-7a1dcdc6812e/operationResults/ab7029ac-19ed-4956-b250-29a876c26ee2?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0f2f3a52-a754-4247-8223-0172caf3f080/operationResults/0c91b132-dc1d-409a-b8b8-6f7edbf7e7cf?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -11303,8 +11557,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11320,7 +11574,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:43 GMT + - Tue, 13 Jul 2021 15:06:26 GMT expires: - '-1' pragma: @@ -11356,8 +11610,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -11365,7 +11619,7 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T13:05:02.2439811Z","protectedItemDataId":"17592726318664","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:05:05.7852342Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T14:23:41.7942036Z","protectedItemDataId":"35185711133226","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-07-13T14:23:45.5288345Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -11374,7 +11628,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:43 GMT + - Tue, 13 Jul 2021 15:06:27 GMT expires: - '-1' pragma: @@ -11411,26 +11665,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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":"2021-06-21T13:05:02.2439811Z","protectedItemDataId":"17592726318664","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:05:05.7852342Z","isArchiveEnabled":false}}]}' + 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-07-13T14:23:41.7942036Z","protectedItemDataId":"35185711133226","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-07-13T14:23:45.5288345Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2573' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:44 GMT + - Tue, 13 Jul 2021 15:06:28 GMT expires: - '-1' pragma: @@ -11446,7 +11699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -11469,8 +11722,8 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -11480,17 +11733,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 13:47:45 GMT + - Tue, 13 Jul 2021 15:06:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -11498,7 +11751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -11519,15 +11772,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11536,7 +11789,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:46 GMT + - Tue, 13 Jul 2021 15:06:31 GMT expires: - '-1' pragma: @@ -11573,15 +11826,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11590,7 +11843,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:47 GMT + - Tue, 13 Jul 2021 15:06:33 GMT expires: - '-1' pragma: @@ -11627,15 +11880,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11644,7 +11897,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:49 GMT + - Tue, 13 Jul 2021 15:06:34 GMT expires: - '-1' pragma: @@ -11681,15 +11934,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11698,7 +11951,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:50 GMT + - Tue, 13 Jul 2021 15:06:35 GMT expires: - '-1' pragma: @@ -11735,15 +11988,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11752,7 +12005,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:51 GMT + - Tue, 13 Jul 2021 15:06:37 GMT expires: - '-1' pragma: @@ -11789,15 +12042,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11806,7 +12059,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:52 GMT + - Tue, 13 Jul 2021 15:06:38 GMT expires: - '-1' pragma: @@ -11843,15 +12096,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11860,7 +12113,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:53 GMT + - Tue, 13 Jul 2021 15:06:40 GMT expires: - '-1' pragma: @@ -11897,15 +12150,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11914,7 +12167,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:55 GMT + - Tue, 13 Jul 2021 15:06:41 GMT expires: - '-1' pragma: @@ -11951,15 +12204,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11968,7 +12221,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:56 GMT + - Tue, 13 Jul 2021 15:06:42 GMT expires: - '-1' pragma: @@ -12005,15 +12258,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12022,7 +12275,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:57 GMT + - Tue, 13 Jul 2021 15:06:44 GMT expires: - '-1' pragma: @@ -12059,15 +12312,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12076,7 +12329,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:47:58 GMT + - Tue, 13 Jul 2021 15:06:45 GMT expires: - '-1' pragma: @@ -12113,15 +12366,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12130,7 +12383,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:00 GMT + - Tue, 13 Jul 2021 15:06:46 GMT expires: - '-1' pragma: @@ -12167,15 +12420,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12184,7 +12437,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:01 GMT + - Tue, 13 Jul 2021 15:06:47 GMT expires: - '-1' pragma: @@ -12221,15 +12474,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12238,7 +12491,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:02 GMT + - Tue, 13 Jul 2021 15:06:49 GMT expires: - '-1' pragma: @@ -12275,15 +12528,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12292,7 +12545,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:03 GMT + - Tue, 13 Jul 2021 15:06:50 GMT expires: - '-1' pragma: @@ -12329,15 +12582,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12346,7 +12599,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:04 GMT + - Tue, 13 Jul 2021 15:06:51 GMT expires: - '-1' pragma: @@ -12383,15 +12636,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12400,7 +12653,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:06 GMT + - Tue, 13 Jul 2021 15:06:52 GMT expires: - '-1' pragma: @@ -12437,15 +12690,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12454,7 +12707,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:07 GMT + - Tue, 13 Jul 2021 15:06:54 GMT expires: - '-1' pragma: @@ -12491,15 +12744,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12508,7 +12761,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:08 GMT + - Tue, 13 Jul 2021 15:06:55 GMT expires: - '-1' pragma: @@ -12545,15 +12798,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12562,7 +12815,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:11 GMT + - Tue, 13 Jul 2021 15:06:56 GMT expires: - '-1' pragma: @@ -12599,15 +12852,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12616,7 +12869,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:12 GMT + - Tue, 13 Jul 2021 15:06:57 GMT expires: - '-1' pragma: @@ -12653,15 +12906,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12670,7 +12923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:13 GMT + - Tue, 13 Jul 2021 15:06:58 GMT expires: - '-1' pragma: @@ -12707,15 +12960,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12724,7 +12977,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:15 GMT + - Tue, 13 Jul 2021 15:07:01 GMT expires: - '-1' pragma: @@ -12761,15 +13014,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12778,7 +13031,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:16 GMT + - Tue, 13 Jul 2021 15:07:02 GMT expires: - '-1' pragma: @@ -12815,15 +13068,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12832,7 +13085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:17 GMT + - Tue, 13 Jul 2021 15:07:03 GMT expires: - '-1' pragma: @@ -12869,15 +13122,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12886,7 +13139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:18 GMT + - Tue, 13 Jul 2021 15:07:04 GMT expires: - '-1' pragma: @@ -12923,15 +13176,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12940,7 +13193,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:20 GMT + - Tue, 13 Jul 2021 15:07:05 GMT expires: - '-1' pragma: @@ -12977,15 +13230,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12994,7 +13247,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:21 GMT + - Tue, 13 Jul 2021 15:07:07 GMT expires: - '-1' pragma: @@ -13031,15 +13284,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13048,7 +13301,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:22 GMT + - Tue, 13 Jul 2021 15:07:08 GMT expires: - '-1' pragma: @@ -13085,15 +13338,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13102,7 +13355,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:24 GMT + - Tue, 13 Jul 2021 15:07:09 GMT expires: - '-1' pragma: @@ -13139,15 +13392,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13156,7 +13409,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:25 GMT + - Tue, 13 Jul 2021 15:07:10 GMT expires: - '-1' pragma: @@ -13193,15 +13446,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13210,7 +13463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:26 GMT + - Tue, 13 Jul 2021 15:07:12 GMT expires: - '-1' pragma: @@ -13247,15 +13500,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13264,7 +13517,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:27 GMT + - Tue, 13 Jul 2021 15:07:13 GMT expires: - '-1' pragma: @@ -13301,15 +13554,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13318,7 +13571,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:29 GMT + - Tue, 13 Jul 2021 15:07:14 GMT expires: - '-1' pragma: @@ -13355,15 +13608,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13372,7 +13625,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:30 GMT + - Tue, 13 Jul 2021 15:07:15 GMT expires: - '-1' pragma: @@ -13409,15 +13662,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13426,7 +13679,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:31 GMT + - Tue, 13 Jul 2021 15:07:16 GMT expires: - '-1' pragma: @@ -13463,15 +13716,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13480,7 +13733,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:32 GMT + - Tue, 13 Jul 2021 15:07:18 GMT expires: - '-1' pragma: @@ -13517,15 +13770,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13534,7 +13787,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:33 GMT + - Tue, 13 Jul 2021 15:07:19 GMT expires: - '-1' pragma: @@ -13571,15 +13824,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13588,7 +13841,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:35 GMT + - Tue, 13 Jul 2021 15:07:20 GMT expires: - '-1' pragma: @@ -13625,15 +13878,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13642,7 +13895,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:36 GMT + - Tue, 13 Jul 2021 15:07:21 GMT expires: - '-1' pragma: @@ -13679,15 +13932,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13696,7 +13949,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:37 GMT + - Tue, 13 Jul 2021 15:07:23 GMT expires: - '-1' pragma: @@ -13733,15 +13986,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13750,7 +14003,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:38 GMT + - Tue, 13 Jul 2021 15:07:24 GMT expires: - '-1' pragma: @@ -13787,15 +14040,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13804,7 +14057,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:39 GMT + - Tue, 13 Jul 2021 15:07:25 GMT expires: - '-1' pragma: @@ -13841,15 +14094,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13858,7 +14111,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:41 GMT + - Tue, 13 Jul 2021 15:07:26 GMT expires: - '-1' pragma: @@ -13895,15 +14148,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13912,7 +14165,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:42 GMT + - Tue, 13 Jul 2021 15:07:28 GMT expires: - '-1' pragma: @@ -13949,15 +14202,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13966,7 +14219,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:43 GMT + - Tue, 13 Jul 2021 15:07:29 GMT expires: - '-1' pragma: @@ -14003,15 +14256,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14020,7 +14273,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:45 GMT + - Tue, 13 Jul 2021 15:07:30 GMT expires: - '-1' pragma: @@ -14057,15 +14310,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14074,7 +14327,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:46 GMT + - Tue, 13 Jul 2021 15:07:31 GMT expires: - '-1' pragma: @@ -14111,15 +14364,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14128,7 +14381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:48 GMT + - Tue, 13 Jul 2021 15:07:32 GMT expires: - '-1' pragma: @@ -14165,15 +14418,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14182,7 +14435,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:49 GMT + - Tue, 13 Jul 2021 15:07:34 GMT expires: - '-1' pragma: @@ -14219,15 +14472,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14236,7 +14489,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:51 GMT + - Tue, 13 Jul 2021 15:07:35 GMT expires: - '-1' pragma: @@ -14273,15 +14526,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14290,7 +14543,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:52 GMT + - Tue, 13 Jul 2021 15:07:36 GMT expires: - '-1' pragma: @@ -14327,15 +14580,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14344,7 +14597,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:53 GMT + - Tue, 13 Jul 2021 15:07:37 GMT expires: - '-1' pragma: @@ -14381,15 +14634,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14398,7 +14651,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:55 GMT + - Tue, 13 Jul 2021 15:07:39 GMT expires: - '-1' pragma: @@ -14435,15 +14688,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14452,7 +14705,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:56 GMT + - Tue, 13 Jul 2021 15:07:40 GMT expires: - '-1' pragma: @@ -14489,15 +14742,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14506,7 +14759,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:57 GMT + - Tue, 13 Jul 2021 15:07:41 GMT expires: - '-1' pragma: @@ -14543,15 +14796,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14560,7 +14813,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:58 GMT + - Tue, 13 Jul 2021 15:07:43 GMT expires: - '-1' pragma: @@ -14597,15 +14850,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14614,7 +14867,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:48:59 GMT + - Tue, 13 Jul 2021 15:07:44 GMT expires: - '-1' pragma: @@ -14651,15 +14904,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14668,7 +14921,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:01 GMT + - Tue, 13 Jul 2021 15:07:46 GMT expires: - '-1' pragma: @@ -14705,15 +14958,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14722,7 +14975,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:02 GMT + - Tue, 13 Jul 2021 15:07:47 GMT expires: - '-1' pragma: @@ -14759,15 +15012,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14776,7 +15029,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:03 GMT + - Tue, 13 Jul 2021 15:07:48 GMT expires: - '-1' pragma: @@ -14813,15 +15066,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14830,7 +15083,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:04 GMT + - Tue, 13 Jul 2021 15:07:49 GMT expires: - '-1' pragma: @@ -14867,15 +15120,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14884,7 +15137,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:06 GMT + - Tue, 13 Jul 2021 15:07:50 GMT expires: - '-1' pragma: @@ -14921,15 +15174,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14938,7 +15191,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:07 GMT + - Tue, 13 Jul 2021 15:07:52 GMT expires: - '-1' pragma: @@ -14975,15 +15228,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14992,7 +15245,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:08 GMT + - Tue, 13 Jul 2021 15:07:53 GMT expires: - '-1' pragma: @@ -15029,15 +15282,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15046,7 +15299,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:09 GMT + - Tue, 13 Jul 2021 15:07:54 GMT expires: - '-1' pragma: @@ -15083,15 +15336,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15100,7 +15353,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:11 GMT + - Tue, 13 Jul 2021 15:07:55 GMT expires: - '-1' pragma: @@ -15137,15 +15390,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15154,7 +15407,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:13 GMT + - Tue, 13 Jul 2021 15:07:56 GMT expires: - '-1' pragma: @@ -15191,15 +15444,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15208,7 +15461,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:14 GMT + - Tue, 13 Jul 2021 15:07:58 GMT expires: - '-1' pragma: @@ -15245,15 +15498,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15262,7 +15515,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:15 GMT + - Tue, 13 Jul 2021 15:07:59 GMT expires: - '-1' pragma: @@ -15299,15 +15552,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15316,7 +15569,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:17 GMT + - Tue, 13 Jul 2021 15:08:00 GMT expires: - '-1' pragma: @@ -15353,15 +15606,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15370,7 +15623,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:18 GMT + - Tue, 13 Jul 2021 15:08:01 GMT expires: - '-1' pragma: @@ -15407,15 +15660,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15424,7 +15677,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:19 GMT + - Tue, 13 Jul 2021 15:08:03 GMT expires: - '-1' pragma: @@ -15461,15 +15714,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15478,7 +15731,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:20 GMT + - Tue, 13 Jul 2021 15:08:04 GMT expires: - '-1' pragma: @@ -15515,15 +15768,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15532,7 +15785,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:22 GMT + - Tue, 13 Jul 2021 15:08:05 GMT expires: - '-1' pragma: @@ -15569,15 +15822,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15586,7 +15839,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:23 GMT + - Tue, 13 Jul 2021 15:08:06 GMT expires: - '-1' pragma: @@ -15623,15 +15876,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15640,7 +15893,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:24 GMT + - Tue, 13 Jul 2021 15:08:07 GMT expires: - '-1' pragma: @@ -15677,15 +15930,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15694,7 +15947,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:25 GMT + - Tue, 13 Jul 2021 15:08:09 GMT expires: - '-1' pragma: @@ -15731,15 +15984,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15748,7 +16001,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:26 GMT + - Tue, 13 Jul 2021 15:08:10 GMT expires: - '-1' pragma: @@ -15785,15 +16038,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15802,7 +16055,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:28 GMT + - Tue, 13 Jul 2021 15:08:11 GMT expires: - '-1' pragma: @@ -15839,15 +16092,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15856,7 +16109,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:29 GMT + - Tue, 13 Jul 2021 15:08:12 GMT expires: - '-1' pragma: @@ -15893,15 +16146,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15910,7 +16163,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:30 GMT + - Tue, 13 Jul 2021 15:08:14 GMT expires: - '-1' pragma: @@ -15947,15 +16200,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15964,7 +16217,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:31 GMT + - Tue, 13 Jul 2021 15:08:15 GMT expires: - '-1' pragma: @@ -16001,15 +16254,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16018,7 +16271,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:33 GMT + - Tue, 13 Jul 2021 15:08:16 GMT expires: - '-1' pragma: @@ -16055,15 +16308,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16072,7 +16325,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:34 GMT + - Tue, 13 Jul 2021 15:08:17 GMT expires: - '-1' pragma: @@ -16109,15 +16362,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16126,7 +16379,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:35 GMT + - Tue, 13 Jul 2021 15:08:18 GMT expires: - '-1' pragma: @@ -16163,15 +16416,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"InProgress","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16180,7 +16433,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:36 GMT + - Tue, 13 Jul 2021 15:08:21 GMT expires: - '-1' pragma: @@ -16217,24 +16470,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 response: body: - string: '{"id":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","name":"1333b6c6-e1ed-468c-83f3-4b2a66aa6ba3","status":"Succeeded","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"2021-06-21T13:47:45.4043075Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"38d5989f-b785-40d9-ac80-e3364d68168f"}}' + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:38 GMT + - Tue, 13 Jul 2021 15:08:22 GMT expires: - '-1' pragma: @@ -16271,16 +16524,124 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 + response: + body: + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"InProgress","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:08: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: + - '61' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b365306c-d10d-4e91-9ee7-4e33b817f292?api-version=2021-01-01 + response: + body: + string: '{"id":"b365306c-d10d-4e91-9ee7-4e33b817f292","name":"b365306c-d10d-4e91-9ee7-4e33b817f292","status":"Succeeded","startTime":"2021-07-13T15:06:31.2356342Z","endTime":"2021-07-13T15:06:31.2356342Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"91ab7f4a-d95e-43cf-a26b-a447bb96a6fc"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 15:08: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: + - '60' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/38d5989f-b785-40d9-ac80-e3364d68168f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/91ab7f4a-d95e-43cf-a26b-a447bb96a6fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/38d5989f-b785-40d9-ac80-e3364d68168f","name":"38d5989f-b785-40d9-ac80-e3364d68168f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.5772584S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T13:47:45.4043075Z","endTime":"2021-06-21T13:49:37.9815659Z","activityId":"411effcd-d297-11eb-9861-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/91ab7f4a-d95e-43cf-a26b-a447bb96a6fc","name":"91ab7f4a-d95e-43cf-a26b-a447bb96a6fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.6223745S","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-07-13T15:06:31.2356342Z","endTime":"2021-07-13T15:08:23.8580087Z","activityId":"e48e0402-e3eb-11eb-bd23-00155ddc6812"}}' headers: cache-control: - no-cache @@ -16289,7 +16650,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 13:49:38 GMT + - Tue, 13 Jul 2021 15:08:24 GMT expires: - '-1' pragma: @@ -16306,7 +16667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -16316,7 +16677,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -16328,9 +16689,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -16340,7 +16701,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 13:49:41 GMT + - Tue, 13 Jul 2021 15:08:28 GMT expires: - '-1' pragma: 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 6ae544d3241..e463cd4d50a 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-25T10%3A57%3A55.0977232Z''\"","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-07-13T08%3A24%3A54.6895081Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:57:55 GMT + - Tue, 13 Jul 2021 08:24:55 GMT expires: - '-1' pragma: @@ -43,7 +43,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '207' status: code: 201 message: Created @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:57:56 GMT + - Tue, 13 Jul 2021 08:24:55 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:57:57 GMT + - Tue, 13 Jul 2021 08:24:57 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -172,15 +172,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:57:58 GMT + - Tue, 13 Jul 2021 08:24:57 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -214,9 +214,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T20:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T20:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": "UTC"}}' headers: @@ -235,15 +235,15 @@ interactions: ParameterSetName: - -g -v --policy User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -252,7 +252,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:58:00 GMT + - Tue, 13 Jul 2021 08:24:59 GMT expires: - '-1' pragma: @@ -268,7 +268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -288,15 +288,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -305,7 +305,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:58:00 GMT + - Tue, 13 Jul 2021 08:25:00 GMT expires: - '-1' pragma: @@ -330,9 +330,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T20:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T20:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 3, "timeZone": "UTC"}}' headers: @@ -351,15 +351,15 @@ interactions: ParameterSetName: - -g -v --policy User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -368,7 +368,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 10:58:02 GMT + - Tue, 13 Jul 2021 08:25:00 GMT expires: - '-1' pragma: @@ -384,7 +384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -404,12 +404,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-25T10:57:49Z"},"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-07-13T08:24:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -418,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 10:58:02 GMT + - Tue, 13 Jul 2021 08:25:01 GMT expires: - '-1' pragma: @@ -453,34 +453,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -491,19 +492,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Fri, 25 Jun 2021 10:58:03 GMT + - Tue, 13 Jul 2021 08:25:02 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Fri, 25 Jun 2021 11:03:03 GMT + - Tue, 13 Jul 2021 08:30:02 GMT source-age: - - '0' + - '12' strict-transport-security: - max-age=31536000 vary: @@ -517,15 +518,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - cec1e0303a9570fe707e90558b47d3bb3db80a56 + - bfb50a648069ced3dab55eb6fef378fa9bc462cf x-frame-options: - deny x-github-request-id: - - DAF2:131D:A95A9:D143A:60D55E01 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1221-QPG + - cache-qpg1266-QPG x-timer: - - S1624618684.550076,VS0,VE309 + - S1626164702.301064,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -545,7 +546,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -559,7 +560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 10:58:03 GMT + - Tue, 13 Jul 2021 08:25:02 GMT expires: - '-1' pragma: @@ -627,23 +628,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_wug7NxEgpvlixK8E122tXBRYUzKwE4ru","name":"vm_deploy_wug7NxEgpvlixK8E122tXBRYUzKwE4ru","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11062980365290774458","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-25T10:58:06.203326Z","duration":"PT1.1771908S","correlationId":"cf515397-03c4-48a3-910c-172a7a2014c1","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_2yRjomefn5uVsRj4RoXxmOiiITt5ewcv","name":"vm_deploy_2yRjomefn5uVsRj4RoXxmOiiITt5ewcv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4590426073709872197","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T08:25:04.126614Z","duration":"PT0.9074275S","correlationId":"408acc60-0925-4190-ae29-71c8bfe87ea4","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_wug7NxEgpvlixK8E122tXBRYUzKwE4ru/operationStatuses/08585769882004514995?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_2yRjomefn5uVsRj4RoXxmOiiITt5ewcv/operationStatuses/08585754421822584519?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2960' + - '2959' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 10:58:05 GMT + - Tue, 13 Jul 2021 08:25:03 GMT expires: - '-1' pragma: @@ -653,7 +654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -671,51 +672,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769882004514995?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, 25 Jun 2021 10:58:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --admin-password --tags --nsg-rule - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769882004514995?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/08585754421822584519?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -727,7 +686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 10:59:06 GMT + - Tue, 13 Jul 2021 08:25:34 GMT expires: - '-1' pragma: @@ -755,9 +714,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769882004514995?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/08585754421822584519?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -769,7 +728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 10:59:36 GMT + - Tue, 13 Jul 2021 08:26:04 GMT expires: - '-1' pragma: @@ -797,9 +756,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769882004514995?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/08585754421822584519?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -811,7 +770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:06 GMT + - Tue, 13 Jul 2021 08:26:34 GMT expires: - '-1' pragma: @@ -839,21 +798,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_wug7NxEgpvlixK8E122tXBRYUzKwE4ru","name":"vm_deploy_wug7NxEgpvlixK8E122tXBRYUzKwE4ru","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11062980365290774458","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-25T10:59:45.6338862Z","duration":"PT1M40.607751S","correlationId":"cf515397-03c4-48a3-910c-172a7a2014c1","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_2yRjomefn5uVsRj4RoXxmOiiITt5ewcv","name":"vm_deploy_2yRjomefn5uVsRj4RoXxmOiiITt5ewcv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4590426073709872197","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T08:26:32.581782Z","duration":"PT1M29.3625955S","correlationId":"408acc60-0925-4190-ae29-71c8bfe87ea4","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 content-length: - - '4087' + - '4086' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:07 GMT + - Tue, 13 Jul 2021 08:26:34 GMT expires: - '-1' pragma: @@ -881,7 +840,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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=2021-03-01 response: @@ -890,16 +849,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\": \"c96c65c8-a7f8-4707-95a1-032b5870019c\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4ff87bf2-1e54-48ec-b8d4-7bbae4e6ee53\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000005_OsDisk_1_bf19c0d4353341e3a8a33ed547e76cb0\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000005_OsDisk_1_4dabc1cd4c4e4def9ce459c14e060ace\",\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_OsDisk_1_bf19c0d4353341e3a8a33ed547e76cb0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000005_OsDisk_1_4dabc1cd4c4e4def9ce459c14e060ace\"\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\": @@ -913,16 +872,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\": \"2021-06-25T11:00:07+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T08:26:35+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000005_OsDisk_1_bf19c0d4353341e3a8a33ed547e76cb0\",\r\n \"statuses\": + \"clitest-vm000005_OsDisk_1_4dabc1cd4c4e4def9ce459c14e060ace\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-25T10:58:27.531001+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:25:16.4462721+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-25T10:59:44.5005498+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:26:31.3676481+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}" @@ -930,11 +889,11 @@ interactions: cache-control: - no-cache content-length: - - '3472' + - '3473' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:07 GMT + - Tue, 13 Jul 2021 08:26:35 GMT expires: - '-1' pragma: @@ -951,7 +910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31829 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31870 status: code: 200 message: OK @@ -969,20 +928,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"e84edcd2-3667-42c8-b923-bc2ca3b37164\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"76a70b09-b996-45f7-8de8-a1365fefe526\\\"\",\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\": \"8cb5aaca-fa74-4df4-809d-ba0d7060f1d6\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8b057926-931a-4a91-8a6d-1df94b93243d\",\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/\\\"e84edcd2-3667-42c8-b923-bc2ca3b37164\\\"\",\r\n + \ \"etag\": \"W/\\\"76a70b09-b996-45f7-8de8-a1365fefe526\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -991,8 +950,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\": - \"iqwvxb1yjljelgpjmyybobyj1f.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-57-73-1F\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"4jasd5gb1keu3aq4u1et0uwgwg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-56-BE-C5\",\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\": @@ -1006,9 +965,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:07 GMT + - Tue, 13 Jul 2021 08:26:35 GMT etag: - - W/"e84edcd2-3667-42c8-b923-bc2ca3b37164" + - W/"76a70b09-b996-45f7-8de8-a1365fefe526" expires: - '-1' pragma: @@ -1025,7 +984,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a68f26c-1fba-4fd9-9729-709b16a297bc + - 3f0166a6-dab6-4b14-8db2-052a4ff93558 status: code: 200 message: OK @@ -1043,19 +1002,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"25dc6a67-e00e-4d4d-86eb-a3e7117fc450\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ffb4c02b-9c3f-4a89-b483-e01c34455c69\\\"\",\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\": \"50c3f19d-3241-44cf-91b9-d2b0d7ca5802\",\r\n - \ \"ipAddress\": \"20.205.206.220\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"ce0c9dc7-5178-4e7e-84a2-075e41dd053e\",\r\n + \ \"ipAddress\": \"13.67.52.67\",\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}" @@ -1063,13 +1022,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1180' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:07 GMT + - Tue, 13 Jul 2021 08:26:35 GMT etag: - - W/"25dc6a67-e00e-4d4d-86eb-a3e7117fc450" + - W/"ffb4c02b-9c3f-4a89-b483-e01c34455c69" expires: - '-1' pragma: @@ -1086,7 +1045,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e6d2bb7-7c97-4876-a6d1-769b57529d66 + - a8d27808-1a95-4f2d-8ff0-f5ee5906d401 status: code: 200 message: OK @@ -1104,12 +1063,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-25T10:57:49Z"},"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-07-13T08:24:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1118,7 +1077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:07 GMT + - Tue, 13 Jul 2021 08:26:36 GMT expires: - '-1' pragma: @@ -1153,34 +1112,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -1191,19 +1151,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:08 GMT + - Tue, 13 Jul 2021 08:26:36 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Fri, 25 Jun 2021 11:05:08 GMT + - Tue, 13 Jul 2021 08:31:36 GMT source-age: - - '125' + - '106' strict-transport-security: - max-age=31536000 vary: @@ -1217,15 +1177,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 24b83179fe5e08c408625d3b6916be562845fbea + - 7a1d297d4ed2941b66c43acc51b06bc0e784fa97 x-frame-options: - deny x-github-request-id: - - DAF2:131D:A95A9:D143A:60D55E01 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1250-QPG + - cache-qpg1241-QPG x-timer: - - S1624618809.552106,VS0,VE1 + - S1626164797.882474,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -1245,29 +1205,27 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"1aa34d00-144e-4d18-9049-43e6ea30a626\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"61ae566c-f946-40c9-93df-62a67ca6eec4\\\"\",\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\": - \"875b2d44-4a78-45d2-99e9-6630170709dd\",\r\n \"addressSpace\": {\r\n + \"fc2141f2-dac1-4e89-821e-a6c93d52c6b6\",\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/\\\"1aa34d00-144e-4d18-9049-43e6ea30a626\\\"\",\r\n + \ \"etag\": \"W/\\\"61ae566c-f946-40c9-93df-62a67ca6eec4\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg\"\r\n - \ },\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 + \ \"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 \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1276,11 +1234,11 @@ interactions: cache-control: - no-cache content-length: - - '2195' + - '1957' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:08 GMT + - Tue, 13 Jul 2021 08:26:37 GMT expires: - '-1' pragma: @@ -1297,7 +1255,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 877b7a23-073d-4ce5-a872-ce5d359aaedb + - 6aa0af69-b1bd-4849-9fc1-c8bc4d162e81 status: code: 200 message: OK @@ -1349,23 +1307,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_GghIYW9eNd2NvK3mDSntiban1US0PWbt","name":"vm_deploy_GghIYW9eNd2NvK3mDSntiban1US0PWbt","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15269143275041249142","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-25T11:00:10.2820473Z","duration":"PT0.7686828S","correlationId":"329fd468-cbd6-4d7d-b634-c653a13979ce","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_JoccRd2vQPrb2Ch0htYbaMPUwSUG6vdF","name":"vm_deploy_JoccRd2vQPrb2Ch0htYbaMPUwSUG6vdF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6898203073557099300","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T08:26:38.8102897Z","duration":"PT0.9553932S","correlationId":"e4e77c6c-705b-43e3-8642-05960846dd51","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_GghIYW9eNd2NvK3mDSntiban1US0PWbt/operationStatuses/08585769880759642675?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JoccRd2vQPrb2Ch0htYbaMPUwSUG6vdF/operationStatuses/08585754420876227665?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2592' + - '2591' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:00:10 GMT + - Tue, 13 Jul 2021 08:26:38 GMT expires: - '-1' pragma: @@ -1375,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -1393,51 +1351,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769880759642675?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, 25 Jun 2021 11:00: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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --admin-password --tags --nsg-rule - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769880759642675?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/08585754420876227665?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1449,7 +1365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:01:10 GMT + - Tue, 13 Jul 2021 08:27:09 GMT expires: - '-1' pragma: @@ -1477,9 +1393,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769880759642675?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/08585754420876227665?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1491,7 +1407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:01:40 GMT + - Tue, 13 Jul 2021 08:27:38 GMT expires: - '-1' pragma: @@ -1519,9 +1435,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585769880759642675?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/08585754420876227665?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1533,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:10 GMT + - Tue, 13 Jul 2021 08:28:08 GMT expires: - '-1' pragma: @@ -1561,21 +1477,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_GghIYW9eNd2NvK3mDSntiban1US0PWbt","name":"vm_deploy_GghIYW9eNd2NvK3mDSntiban1US0PWbt","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15269143275041249142","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-25T11:01:57.6134742Z","duration":"PT1M48.1001097S","correlationId":"329fd468-cbd6-4d7d-b634-c653a13979ce","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_JoccRd2vQPrb2Ch0htYbaMPUwSUG6vdF","name":"vm_deploy_JoccRd2vQPrb2Ch0htYbaMPUwSUG6vdF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6898203073557099300","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T08:28:09.0741635Z","duration":"PT1M31.219267S","correlationId":"e4e77c6c-705b-43e3-8642-05960846dd51","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: - - '3503' + - '3501' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:10 GMT + - Tue, 13 Jul 2021 08:28:09 GMT expires: - '-1' pragma: @@ -1603,7 +1519,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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=2021-03-01 response: @@ -1612,16 +1528,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\": \"50b88582-7e96-45e8-a1a9-e31c12d24ae0\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"efb30603-da48-494e-b955-50f7ced8517d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000006_OsDisk_1_b024c6fe89e34e7d8d6e9bdb8964ba87\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000006_OsDisk_1_be79781e0c0048e2914ea86456142079\",\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_OsDisk_1_b024c6fe89e34e7d8d6e9bdb8964ba87\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000006_OsDisk_1_be79781e0c0048e2914ea86456142079\"\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\": @@ -1635,16 +1551,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\": \"2021-06-25T11:02:11+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T08:28:10+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000006_OsDisk_1_b024c6fe89e34e7d8d6e9bdb8964ba87\",\r\n \"statuses\": + \"clitest-vm000006_OsDisk_1_be79781e0c0048e2914ea86456142079\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-25T11:01:02.7669138+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:26:53.0081624+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-25T11:01:55.7675542+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:28:08.5392107+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}" @@ -1656,7 +1572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:11 GMT + - Tue, 13 Jul 2021 08:28:09 GMT expires: - '-1' pragma: @@ -1673,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31826 + - Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31858 status: code: 200 message: OK @@ -1691,20 +1607,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"9e575d69-befb-466c-b980-f1d5797d0a49\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1eaecadf-8aef-4733-8a98-d670b82cdbde\\\"\",\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\": \"d8df99af-2fc7-4838-935d-a9a3de72c949\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"5c3d08a5-b561-41bf-82f8-46113544edb2\",\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/\\\"9e575d69-befb-466c-b980-f1d5797d0a49\\\"\",\r\n + \ \"etag\": \"W/\\\"1eaecadf-8aef-4733-8a98-d670b82cdbde\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -1713,8 +1629,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\": - \"iqwvxb1yjljelgpjmyybobyj1f.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-58-43-F6\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"4jasd5gb1keu3aq4u1et0uwgwg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-56-BC-2C\",\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\": @@ -1728,9 +1644,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:11 GMT + - Tue, 13 Jul 2021 08:28:09 GMT etag: - - W/"9e575d69-befb-466c-b980-f1d5797d0a49" + - W/"1eaecadf-8aef-4733-8a98-d670b82cdbde" expires: - '-1' pragma: @@ -1747,7 +1663,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e14c0d13-5933-4712-b050-5ddbc759eee7 + - d580bf78-87c2-493a-b4a7-b499c463e319 status: code: 200 message: OK @@ -1765,18 +1681,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"3ec3189e-479b-41da-811f-e259a9b10d7e\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"caffb3ad-c7a9-48d9-ba26-b386e58e9be5\\\"\",\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\": \"36839d90-f9bc-4417-946b-c14c60ff1d32\",\r\n - \ \"ipAddress\": \"20.205.202.12\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"790441ca-3602-4513-a39d-c9b467e8223c\",\r\n + \ \"ipAddress\": \"13.76.129.253\",\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 @@ -1789,9 +1705,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:11 GMT + - Tue, 13 Jul 2021 08:28:09 GMT etag: - - W/"3ec3189e-479b-41da-811f-e259a9b10d7e" + - W/"caffb3ad-c7a9-48d9-ba26-b386e58e9be5" expires: - '-1' pragma: @@ -1808,7 +1724,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d15c86b-8863-4219-891d-318770e36ca8 + - c53b4e0f-dd32-4d39-b25e-314b65d229f1 status: code: 200 message: OK @@ -1826,7 +1742,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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?api-version=2021-03-01 response: @@ -1835,16 +1751,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\": \"c96c65c8-a7f8-4707-95a1-032b5870019c\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4ff87bf2-1e54-48ec-b8d4-7bbae4e6ee53\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000005_OsDisk_1_bf19c0d4353341e3a8a33ed547e76cb0\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000005_OsDisk_1_4dabc1cd4c4e4def9ce459c14e060ace\",\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_OsDisk_1_bf19c0d4353341e3a8a33ed547e76cb0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000005_OsDisk_1_4dabc1cd4c4e4def9ce459c14e060ace\"\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\": @@ -1862,7 +1778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:11 GMT + - Tue, 13 Jul 2021 08:28:10 GMT expires: - '-1' pragma: @@ -1879,7 +1795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31825 + - Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31857 status: code: 200 message: OK @@ -1897,12 +1813,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-25T10%3A57%3A55.0977232Z''\"","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-07-13T08%3A24%3A54.6895081Z''\"","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 @@ -1911,7 +1827,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:12 GMT + - Tue, 13 Jul 2021 08:28:11 GMT expires: - '-1' pragma: @@ -1943,15 +1859,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1960,7 +1876,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:13 GMT + - Tue, 13 Jul 2021 08:28:11 GMT expires: - '-1' pragma: @@ -1996,24 +1912,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoredjrd","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoredjrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestorenkkx","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestorenkkx","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoreptio","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoreptio","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoretbft","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoretbft","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasetest;saphanatest/protectableItems/vm;iaasvmcontainerv2;akkanasetest;saphanatest","name":"iaasvmcontainerv2;akkanasetest;saphanatest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Compute/virtualMachines/saphanatest","virtualMachineVersion":"Compute","resourceGroup":"akkanaseTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"saphanatest","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm/protectableItems/vm;iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","name":"iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.Compute/virtualMachines/publicPreviewVM","virtualMachineVersion":"Compute","resourceGroup":"hiagaCZR-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"publicPreviewVM","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","name":"iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Compute/virtualMachines/iaasenc-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.encryptedvm","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasenc-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorebwnz","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorebwnz","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorerbrd","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorerbrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","name":"iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.Compute/virtualMachines/testOLR-0402","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.vaults","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testOLR-0402","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","name":"iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/iaasext-win-3","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-win-3","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;testvm2/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;testvm2","name":"iaasvmcontainerv2;iaasvm.existing;testvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/Testvm2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"Testvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","name":"iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.czr/providers/Microsoft.Compute/virtualMachines/iaasext-czrdizg","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.czr","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-czrdizg","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","name":"iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.restore/providers/Microsoft.Compute/virtualMachines/vmnrestorefula","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmnrestorefula","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","name":"iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.Compute/virtualMachines/iaasnew-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasnew-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","name":"iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup/providers/Microsoft.Compute/virtualMachines/iaasvbkp-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.vmbackup","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasvbkp-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext/protectableItems/vm;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","name":"iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Compute/virtualMachines/iaashanaext","virtualMachineVersion":"Compute","resourceGroup":"iaasvmhanaworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaashanaext","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext2-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext2-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtsqlvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtsqlvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0/protectableItems/vm;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","name":"iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Compute/virtualMachines/PSTestVM54bdf0","virtualMachineVersion":"Compute","resourceGroup":"PSTestRG54bdf8da","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"PSTestVM54bdf0","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8895;pstestvm/protectableItems/vm;iaasvmcontainerv2;pstestrg8895;pstestvm","name":"iaasvmcontainerv2;pstestrg8895;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Compute/virtualMachines/pstestvm","virtualMachineVersion":"Compute","resourceGroup":"pstestrg8895","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestvm","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo/protectableItems/vm;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo","name":"iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h/providers/Microsoft.Compute/virtualMachines/clitest-vmljddo","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmljddo","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6/protectableItems/vm;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6","name":"iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h/providers/Microsoft.Compute/virtualMachines/clitest-vmziij6","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmziij6","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '22271' + - '7011' content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:13 GMT + - Tue, 13 Jul 2021 08:28:11 GMT expires: - '-1' pragma: @@ -2029,7 +1945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -2046,48 +1962,52 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo/protectableItems/vm;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo","name":"iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h/providers/Microsoft.Compute/virtualMachines/clitest-vmljddo","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmljddo","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6/protectableItems/vm;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6","name":"iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h/providers/Microsoft.Compute/virtualMachines/clitest-vmziij6","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmziij6","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","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/419a886f-a5ad-459a-8932-063effa21078?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '7011' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:14 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + 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 @@ -2097,37 +2017,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-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=2021-01-01 response: body: string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationsStatus/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Jun 2021 11:02:15 GMT + - Tue, 13 Jul 2021 08:28: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/operationResults/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationResults/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -2147,39 +2073,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:16 GMT + - Tue, 13 Jul 2021 08:28: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/operationResults/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2194,39 +2126,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:17 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2241,39 +2179,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:18 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2288,39 +2232,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:19 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2335,39 +2285,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:21 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2382,39 +2338,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:22 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2429,39 +2391,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:23 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache - strict-transport-security: + server: + - Microsoft-IIS/10.0 + strict-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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2476,39 +2444,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:24 GMT + - Tue, 13 Jul 2021 08:28: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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '142' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2523,35 +2497,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/419a886f-a5ad-459a-8932-063effa21078?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:25 GMT + - Tue, 13 Jul 2021 08:28: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: - - '140' + - '141' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2566,24 +2550,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoredjrd","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoredjrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestorenkkx","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestorenkkx","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoreptio","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoreptio","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoretbft","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoretbft","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasetest;saphanatest/protectableItems/vm;iaasvmcontainerv2;akkanasetest;saphanatest","name":"iaasvmcontainerv2;akkanasetest;saphanatest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Compute/virtualMachines/saphanatest","virtualMachineVersion":"Compute","resourceGroup":"akkanaseTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"saphanatest","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;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;hiagaczr-rg;publicpreviewvm/protectableItems/vm;iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","name":"iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.Compute/virtualMachines/publicPreviewVM","virtualMachineVersion":"Compute","resourceGroup":"hiagaCZR-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"publicPreviewVM","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","name":"iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Compute/virtualMachines/iaasenc-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.encryptedvm","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasenc-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorebwnz","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorebwnz","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorerbrd","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorerbrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","name":"iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.Compute/virtualMachines/testOLR-0402","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.vaults","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testOLR-0402","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","name":"iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/iaasext-win-3","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-win-3","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;testvm2/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;testvm2","name":"iaasvmcontainerv2;iaasvm.existing;testvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/Testvm2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"Testvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","name":"iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.czr/providers/Microsoft.Compute/virtualMachines/iaasext-czrdizg","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.czr","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-czrdizg","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","name":"iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.restore/providers/Microsoft.Compute/virtualMachines/vmnrestorefula","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmnrestorefula","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","name":"iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.Compute/virtualMachines/iaasnew-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasnew-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","name":"iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup/providers/Microsoft.Compute/virtualMachines/iaasvbkp-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.vmbackup","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasvbkp-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext/protectableItems/vm;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","name":"iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Compute/virtualMachines/iaashanaext","virtualMachineVersion":"Compute","resourceGroup":"iaasvmhanaworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaashanaext","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext2-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext2-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtsqlvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtsqlvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0/protectableItems/vm;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","name":"iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Compute/virtualMachines/PSTestVM54bdf0","virtualMachineVersion":"Compute","resourceGroup":"PSTestRG54bdf8da","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"PSTestVM54bdf0","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8895;pstestvm/protectableItems/vm;iaasvmcontainerv2;pstestrg8895;pstestvm","name":"iaasvmcontainerv2;pstestrg8895;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Compute/virtualMachines/pstestvm","virtualMachineVersion":"Compute","resourceGroup":"pstestrg8895","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestvm","protectionState":"NotProtected"}}]}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '24791' + - '188' content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:26 GMT + - Tue, 13 Jul 2021 08:28:25 GMT expires: - '-1' pragma: @@ -2599,16 +2583,14 @@ 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-vm000005", - "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 @@ -2618,48 +2600,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","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-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationsStatus/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:02:27 GMT + - Tue, 13 Jul 2021 08:28: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationResults/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2674,15 +2656,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2691,7 +2673,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:27 GMT + - Tue, 13 Jul 2021 08:28:28 GMT expires: - '-1' pragma: @@ -2707,7 +2689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -2727,15 +2709,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2744,7 +2726,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:28 GMT + - Tue, 13 Jul 2021 08:28:29 GMT expires: - '-1' pragma: @@ -2760,7 +2742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '137' x-powered-by: - ASP.NET status: @@ -2780,15 +2762,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2797,7 +2779,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:29 GMT + - Tue, 13 Jul 2021 08:28:30 GMT expires: - '-1' pragma: @@ -2813,7 +2795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '136' x-powered-by: - ASP.NET status: @@ -2833,15 +2815,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2850,7 +2832,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:30 GMT + - Tue, 13 Jul 2021 08:28:31 GMT expires: - '-1' pragma: @@ -2866,7 +2848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '135' x-powered-by: - ASP.NET status: @@ -2886,15 +2868,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2903,7 +2885,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:32 GMT + - Tue, 13 Jul 2021 08:28:34 GMT expires: - '-1' pragma: @@ -2919,7 +2901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '134' x-powered-by: - ASP.NET status: @@ -2939,15 +2921,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2956,7 +2938,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:33 GMT + - Tue, 13 Jul 2021 08:28:35 GMT expires: - '-1' pragma: @@ -2972,7 +2954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '133' x-powered-by: - ASP.NET status: @@ -2992,15 +2974,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3009,7 +2991,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:34 GMT + - Tue, 13 Jul 2021 08:28:36 GMT expires: - '-1' pragma: @@ -3025,7 +3007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '132' x-powered-by: - ASP.NET status: @@ -3045,15 +3027,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3062,7 +3044,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:36 GMT + - Tue, 13 Jul 2021 08:28:37 GMT expires: - '-1' pragma: @@ -3078,7 +3060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '131' x-powered-by: - ASP.NET status: @@ -3098,15 +3080,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3115,7 +3097,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:37 GMT + - Tue, 13 Jul 2021 08:28:38 GMT expires: - '-1' pragma: @@ -3131,7 +3113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '130' x-powered-by: - ASP.NET status: @@ -3151,15 +3133,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3168,7 +3150,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:38 GMT + - Tue, 13 Jul 2021 08:28:40 GMT expires: - '-1' pragma: @@ -3184,7 +3166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '129' x-powered-by: - ASP.NET status: @@ -3204,15 +3186,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3221,7 +3203,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:39 GMT + - Tue, 13 Jul 2021 08:28:41 GMT expires: - '-1' pragma: @@ -3237,7 +3219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '128' x-powered-by: - ASP.NET status: @@ -3257,15 +3239,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3274,7 +3256,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:41 GMT + - Tue, 13 Jul 2021 08:28:42 GMT expires: - '-1' pragma: @@ -3290,7 +3272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '127' x-powered-by: - ASP.NET status: @@ -3310,15 +3292,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3327,7 +3309,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:42 GMT + - Tue, 13 Jul 2021 08:28:43 GMT expires: - '-1' pragma: @@ -3343,7 +3325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '126' x-powered-by: - ASP.NET status: @@ -3363,15 +3345,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3380,7 +3362,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:43 GMT + - Tue, 13 Jul 2021 08:28:45 GMT expires: - '-1' pragma: @@ -3396,7 +3378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '125' x-powered-by: - ASP.NET status: @@ -3416,15 +3398,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"InProgress","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3433,7 +3415,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:44 GMT + - Tue, 13 Jul 2021 08:28:46 GMT expires: - '-1' pragma: @@ -3449,7 +3431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '124' x-powered-by: - ASP.NET status: @@ -3469,24 +3451,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/fda5cee3-6255-4c0a-84fd-aee09990cabc?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fda5cee3-6255-4c0a-84fd-aee09990cabc","name":"fda5cee3-6255-4c0a-84fd-aee09990cabc","status":"Succeeded","startTime":"2021-07-13T08:28:14.5297916Z","endTime":"2021-07-13T08:28:14.5297916Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6674eba2-1737-41a8-9a50-55b97a6e3b3d"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:47 GMT + - Tue, 13 Jul 2021 08:28:47 GMT expires: - '-1' pragma: @@ -3502,7 +3484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '123' x-powered-by: - ASP.NET status: @@ -3522,30 +3504,32 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6674eba2-1737-41a8-9a50-55b97a6e3b3d?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6674eba2-1737-41a8-9a50-55b97a6e3b3d","name":"6674eba2-1737-41a8-9a50-55b97a6e3b3d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT31.7426423S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000005","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:28:14.5454167Z","endTime":"2021-07-13T08:28:46.288059Z","activityId":"40f09936-e3b4-11eb-a7f9-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '967' content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:48 GMT + - Tue, 13 Jul 2021 08:28: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: @@ -3555,7 +3539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '149' x-powered-by: - ASP.NET status: @@ -3575,30 +3559,50 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006?api-version=2021-03-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: "{\r\n \"name\": \"clitest-vm000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006\",\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\": \"efb30603-da48-494e-b955-50f7ced8517d\",\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.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000006_OsDisk_1_be79781e0c0048e2914ea86456142079\",\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_OsDisk_1_be79781e0c0048e2914ea86456142079\"\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\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '188' + - '2255' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 25 Jun 2021 11:02:49 GMT + - Tue, 13 Jul 2021 08:28:48 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: @@ -3607,10 +3611,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;3977,Microsoft.Compute/LowCostGet30Min;31854 status: code: 200 message: OK @@ -3628,24 +3630,21 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T08%3A24%3A54.6895081Z''\"","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, 25 Jun 2021 11:02:50 GMT + - Tue, 13 Jul 2021 08:28:48 GMT expires: - '-1' pragma: @@ -3660,10 +3659,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 @@ -3681,24 +3676,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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, 25 Jun 2021 11:02:52 GMT + - Tue, 13 Jul 2021 08:28:49 GMT expires: - '-1' pragma: @@ -3714,7 +3709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '148' x-powered-by: - ASP.NET status: @@ -3734,24 +3729,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo/protectableItems/vm;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo","name":"iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmljddo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h/providers/Microsoft.Compute/virtualMachines/clitest-vmljddo","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmljddo","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6/protectableItems/vm;iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6","name":"iaasvmcontainerv2;clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h;clitest-vmziij6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h/providers/Microsoft.Compute/virtualMachines/clitest-vmziij6","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgrpxket24pqrlb5texoguvrqbmzoss2qnbzhvmqmaukwcbhjxnzvou2ixt4iq5vt5h","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmziij6","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '5751' content-type: - application/json date: - - Fri, 25 Jun 2021 11:02:53 GMT + - Tue, 13 Jul 2021 08:28:49 GMT expires: - '-1' pragma: @@ -3767,7 +3762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '149' x-powered-by: - ASP.NET status: @@ -3784,48 +3779,46 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:02:54 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + 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: @@ -3840,45 +3833,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:02:56 GMT + - Tue, 13 Jul 2021 08:28: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/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3893,45 +3880,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:02:57 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '138' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3946,45 +3927,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:02:58 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3999,257 +3974,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11:02: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: - - '124' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 - response: - body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11:03: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: - - '123' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 - response: - body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11:03: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: - - '122' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 - response: - body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11:03: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: - - '121' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 - response: - body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:04 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4264,45 +4021,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:05 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4317,45 +4068,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:07 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4370,45 +4115,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"InProgress","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:08 GMT + - Tue, 13 Jul 2021 08:28: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4423,45 +4162,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","name":"6ed7cbda-aba6-4cb5-93e3-7e6e99fd59fa","status":"Succeeded","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"2021-06-25T11:02:27.6926966Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"09ee7e5c-577a-4a5b-af47-b80069fa6806"}}' + string: '' headers: cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:09 GMT + - Tue, 13 Jul 2021 08:29: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4476,164 +4209,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/09ee7e5c-577a-4a5b-af47-b80069fa6806?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/09ee7e5c-577a-4a5b-af47-b80069fa6806","name":"09ee7e5c-577a-4a5b-af47-b80069fa6806","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT41.6461905S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000005","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-25T11:02:27.6926966Z","endTime":"2021-06-25T11:03:09.3388871Z","activityId":"caf2df55-d5a4-11eb-b19e-c8f750f92764"}}' + string: '' headers: cache-control: - no-cache content-length: - - '968' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:09 GMT + - Tue, 13 Jul 2021 08:29: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/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '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: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"clitest-vm000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006\",\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\": \"50b88582-7e96-45e8-a1a9-e31c12d24ae0\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": - \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000006_OsDisk_1_b024c6fe89e34e7d8d6e9bdb8964ba87\",\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_OsDisk_1_b024c6fe89e34e7d8d6e9bdb8964ba87\"\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\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2255' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Jun 2021 11:03:10 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;3992,Microsoft.Compute/LowCostGet30Min;31822 - 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.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 - response: - body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-25T10%3A57%3A55.0977232Z''\"","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, 25 Jun 2021 11:03: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 - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4648,45 +4256,35 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c84cc65a-d90b-4794-8b29-b70788e740f2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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 date: - - Fri, 25 Jun 2021 11:03:11 GMT + - Tue, 13 Jul 2021 08:29: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' + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -4701,24 +4299,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoredjrd","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoredjrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestorenkkx","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestorenkkx","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoreptio","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoreptio","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoretbft","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoretbft","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasetest;saphanatest/protectableItems/vm;iaasvmcontainerv2;akkanasetest;saphanatest","name":"iaasvmcontainerv2;akkanasetest;saphanatest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Compute/virtualMachines/saphanatest","virtualMachineVersion":"Compute","resourceGroup":"akkanaseTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"saphanatest","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;hiagaczr-rg;publicpreviewvm/protectableItems/vm;iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","name":"iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.Compute/virtualMachines/publicPreviewVM","virtualMachineVersion":"Compute","resourceGroup":"hiagaCZR-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"publicPreviewVM","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","name":"iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Compute/virtualMachines/iaasenc-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.encryptedvm","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasenc-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorebwnz","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorebwnz","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorerbrd","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorerbrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","name":"iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.Compute/virtualMachines/testOLR-0402","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.vaults","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testOLR-0402","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","name":"iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/iaasext-win-3","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-win-3","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;testvm2/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;testvm2","name":"iaasvmcontainerv2;iaasvm.existing;testvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/Testvm2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"Testvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","name":"iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.czr/providers/Microsoft.Compute/virtualMachines/iaasext-czrdizg","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.czr","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-czrdizg","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","name":"iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.restore/providers/Microsoft.Compute/virtualMachines/vmnrestorefula","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmnrestorefula","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","name":"iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.Compute/virtualMachines/iaasnew-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasnew-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","name":"iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup/providers/Microsoft.Compute/virtualMachines/iaasvbkp-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.vmbackup","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasvbkp-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext/protectableItems/vm;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","name":"iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Compute/virtualMachines/iaashanaext","virtualMachineVersion":"Compute","resourceGroup":"iaasvmhanaworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaashanaext","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext2-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext2-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtsqlvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtsqlvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0/protectableItems/vm;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","name":"iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Compute/virtualMachines/PSTestVM54bdf0","virtualMachineVersion":"Compute","resourceGroup":"PSTestRG54bdf8da","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"PSTestVM54bdf0","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8895;pstestvm/protectableItems/vm;iaasvmcontainerv2;pstestrg8895;pstestvm","name":"iaasvmcontainerv2;pstestrg8895;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Compute/virtualMachines/pstestvm","virtualMachineVersion":"Compute","resourceGroup":"pstestrg8895","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestvm","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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;clitest.rgkdlvqlez3z36dkpg6xujz56x7j5uag6liz2xigfp56m6lpi47zqanj4rcuhw4va62;clitest-vmr7ujq/protectableItems/vm;iaasvmcontainerv2;clitest.rgkdlvqlez3z36dkpg6xujz56x7j5uag6liz2xigfp56m6lpi47zqanj4rcuhw4va62;clitest-vmr7ujq","name":"iaasvmcontainerv2;clitest.rgkdlvqlez3z36dkpg6xujz56x7j5uag6liz2xigfp56m6lpi47zqanj4rcuhw4va62;clitest-vmr7ujq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkdlvqlez3z36dkpg6xujz56x7j5uag6liz2xigfp56m6lpi47zqanj4rcuhw4va62/providers/Microsoft.Compute/virtualMachines/clitest-vmr7ujq","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgkdlvqlez3z36dkpg6xujz56x7j5uag6liz2xigfp56m6lpi47zqanj4rcuhw4va62","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmr7ujq","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '23531' + - '5751' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:12 GMT + - Tue, 13 Jul 2021 08:29:02 GMT expires: - '-1' pragma: @@ -4734,14 +4332,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '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-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 @@ -4751,52 +4351,50 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + 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=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoredjrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoredjrd","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoredjrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestorenkkx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestorenkkx","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestorenkkx","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoreptio","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoreptio","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoreptio","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","name":"iaasvmcontainer;iaasvm.existing.restore;vmerestoretbft","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestoretbft","virtualMachineVersion":"ClassicCompute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.ClassicCompute/virtualMachines","friendlyName":"vmerestoretbft","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasetest;saphanatest/protectableItems/vm;iaasvmcontainerv2;akkanasetest;saphanatest","name":"iaasvmcontainerv2;akkanasetest;saphanatest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Compute/virtualMachines/saphanatest","virtualMachineVersion":"Compute","resourceGroup":"akkanaseTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"saphanatest","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;hiagaczr-rg;publicpreviewvm/protectableItems/vm;iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","name":"iaasvmcontainerv2;hiagaczr-rg;publicpreviewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.Compute/virtualMachines/publicPreviewVM","virtualMachineVersion":"Compute","resourceGroup":"hiagaCZR-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"publicPreviewVM","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","name":"iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Compute/virtualMachines/iaasenc-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.encryptedvm","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasenc-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorebwnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorebwnz","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorebwnz","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","name":"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorerbrd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorerbrd","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmerestorerbrd","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","name":"iaasvmcontainerv2;iaasvm.existing.vaults;testolr-0402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.Compute/virtualMachines/testOLR-0402","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing.vaults","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testOLR-0402","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","name":"iaasvmcontainerv2;iaasvm.existing;iaasext-win-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/iaasext-win-3","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-win-3","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;testvm2/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;testvm2","name":"iaasvmcontainerv2;iaasvm.existing;testvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/Testvm2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"Testvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","name":"iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrdizg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.czr/providers/Microsoft.Compute/virtualMachines/iaasext-czrdizg","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.czr","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasext-czrdizg","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","name":"iaasvmcontainerv2;iaasvm.new.restore;vmnrestorefula","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new.restore/providers/Microsoft.Compute/virtualMachines/vmnrestorefula","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new.restore","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vmnrestorefula","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","name":"iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.Compute/virtualMachines/iaasnew-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.new","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasnew-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","name":"iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup/providers/Microsoft.Compute/virtualMachines/iaasvbkp-win-v2","virtualMachineVersion":"Compute","resourceGroup":"iaasvm.vmbackup","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaasvbkp-win-v2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext/protectableItems/vm;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","name":"iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Compute/virtualMachines/iaashanaext","virtualMachineVersion":"Compute","resourceGroup":"iaasvmhanaworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaashanaext","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","name":"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext2-win","virtualMachineVersion":"Compute","resourceGroup":"iaasvmsqlworkload.existing","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"iaassqlext2-win","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtsqlvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtsqlvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pscloudtestrg;psbvtvm/protectableItems/vm;iaasvmcontainerv2;pscloudtestrg;psbvtvm","name":"iaasvmcontainerv2;pscloudtestrg;psbvtvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pscloudtestrg/providers/Microsoft.Compute/virtualMachines/psbvtvm","virtualMachineVersion":"Compute","resourceGroup":"pscloudtestrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"psbvtvm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0/protectableItems/vm;iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","name":"iaasvmcontainerv2;pstestrg54bdf8da;pstestvm54bdf0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Compute/virtualMachines/PSTestVM54bdf0","virtualMachineVersion":"Compute","resourceGroup":"PSTestRG54bdf8da","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"PSTestVM54bdf0","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8895;pstestvm/protectableItems/vm;iaasvmcontainerv2;pstestrg8895;pstestvm","name":"iaasvmcontainerv2;pstestrg8895;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrg8895/providers/Microsoft.Compute/virtualMachines/pstestvm","virtualMachineVersion":"Compute","resourceGroup":"pstestrg8895","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestvm","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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationsStatus/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 cache-control: - no-cache content-length: - - '23531' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:12 GMT + - Tue, 13 Jul 2021 08:29: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-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationResults/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1193' 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 @@ -4806,48 +4404,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","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-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationsStatus/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 25 Jun 2021 11:03:13 GMT + - Tue, 13 Jul 2021 08:29: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationResults/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4862,15 +4460,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4879,7 +4477,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:13 GMT + - Tue, 13 Jul 2021 08:29:05 GMT expires: - '-1' pragma: @@ -4895,7 +4493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '127' x-powered-by: - ASP.NET status: @@ -4915,15 +4513,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4932,7 +4530,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:14 GMT + - Tue, 13 Jul 2021 08:29:06 GMT expires: - '-1' pragma: @@ -4948,7 +4546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '126' x-powered-by: - ASP.NET status: @@ -4968,15 +4566,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4985,7 +4583,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:16 GMT + - Tue, 13 Jul 2021 08:29:08 GMT expires: - '-1' pragma: @@ -5001,7 +4599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '125' x-powered-by: - ASP.NET status: @@ -5021,15 +4619,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5038,7 +4636,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:17 GMT + - Tue, 13 Jul 2021 08:29:09 GMT expires: - '-1' pragma: @@ -5054,7 +4652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '124' x-powered-by: - ASP.NET status: @@ -5074,15 +4672,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5091,7 +4689,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:18 GMT + - Tue, 13 Jul 2021 08:29:10 GMT expires: - '-1' pragma: @@ -5107,7 +4705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '123' x-powered-by: - ASP.NET status: @@ -5127,15 +4725,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5144,7 +4742,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:20 GMT + - Tue, 13 Jul 2021 08:29:11 GMT expires: - '-1' pragma: @@ -5160,7 +4758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '122' x-powered-by: - ASP.NET status: @@ -5180,15 +4778,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5197,7 +4795,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:21 GMT + - Tue, 13 Jul 2021 08:29:13 GMT expires: - '-1' pragma: @@ -5213,7 +4811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '121' x-powered-by: - ASP.NET status: @@ -5233,15 +4831,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5250,7 +4848,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:22 GMT + - Tue, 13 Jul 2021 08:29:14 GMT expires: - '-1' pragma: @@ -5266,7 +4864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '120' x-powered-by: - ASP.NET status: @@ -5286,15 +4884,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5303,7 +4901,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:23 GMT + - Tue, 13 Jul 2021 08:29:15 GMT expires: - '-1' pragma: @@ -5319,7 +4917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '119' x-powered-by: - ASP.NET status: @@ -5339,15 +4937,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5356,7 +4954,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:24 GMT + - Tue, 13 Jul 2021 08:29:16 GMT expires: - '-1' pragma: @@ -5372,7 +4970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '118' x-powered-by: - ASP.NET status: @@ -5392,15 +4990,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5409,7 +5007,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:26 GMT + - Tue, 13 Jul 2021 08:29:17 GMT expires: - '-1' pragma: @@ -5425,7 +5023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '117' x-powered-by: - ASP.NET status: @@ -5445,15 +5043,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5462,7 +5060,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:27 GMT + - Tue, 13 Jul 2021 08:29:19 GMT expires: - '-1' pragma: @@ -5478,7 +5076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '116' x-powered-by: - ASP.NET status: @@ -5498,15 +5096,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5515,7 +5113,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:28 GMT + - Tue, 13 Jul 2021 08:29:20 GMT expires: - '-1' pragma: @@ -5531,7 +5129,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '115' x-powered-by: - ASP.NET status: @@ -5551,15 +5149,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5568,7 +5166,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:29 GMT + - Tue, 13 Jul 2021 08:29:21 GMT expires: - '-1' pragma: @@ -5584,7 +5182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '114' x-powered-by: - ASP.NET status: @@ -5604,15 +5202,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5621,7 +5219,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:31 GMT + - Tue, 13 Jul 2021 08:29:22 GMT expires: - '-1' pragma: @@ -5637,7 +5235,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '113' x-powered-by: - ASP.NET status: @@ -5657,15 +5255,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5674,7 +5272,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:32 GMT + - Tue, 13 Jul 2021 08:29:24 GMT expires: - '-1' pragma: @@ -5690,7 +5288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '112' x-powered-by: - ASP.NET status: @@ -5710,15 +5308,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5727,7 +5325,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:33 GMT + - Tue, 13 Jul 2021 08:29:25 GMT expires: - '-1' pragma: @@ -5743,7 +5341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '111' x-powered-by: - ASP.NET status: @@ -5763,15 +5361,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5780,7 +5378,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:34 GMT + - Tue, 13 Jul 2021 08:29:26 GMT expires: - '-1' pragma: @@ -5796,7 +5394,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '110' x-powered-by: - ASP.NET status: @@ -5816,15 +5414,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5833,7 +5431,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:36 GMT + - Tue, 13 Jul 2021 08:29:27 GMT expires: - '-1' pragma: @@ -5849,7 +5447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '109' x-powered-by: - ASP.NET status: @@ -5869,15 +5467,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5886,7 +5484,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:37 GMT + - Tue, 13 Jul 2021 08:29:28 GMT expires: - '-1' pragma: @@ -5902,7 +5500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '108' x-powered-by: - ASP.NET status: @@ -5922,15 +5520,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5939,7 +5537,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:38 GMT + - Tue, 13 Jul 2021 08:29:30 GMT expires: - '-1' pragma: @@ -5955,7 +5553,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '107' x-powered-by: - ASP.NET status: @@ -5975,15 +5573,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5992,7 +5590,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:39 GMT + - Tue, 13 Jul 2021 08:29:31 GMT expires: - '-1' pragma: @@ -6008,7 +5606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '106' x-powered-by: - ASP.NET status: @@ -6028,15 +5626,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6045,7 +5643,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:40 GMT + - Tue, 13 Jul 2021 08:29:32 GMT expires: - '-1' pragma: @@ -6061,7 +5659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '105' x-powered-by: - ASP.NET status: @@ -6081,15 +5679,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6098,7 +5696,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:42 GMT + - Tue, 13 Jul 2021 08:29:33 GMT expires: - '-1' pragma: @@ -6114,7 +5712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '104' x-powered-by: - ASP.NET status: @@ -6134,15 +5732,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"InProgress","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"InProgress","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6151,7 +5749,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:43 GMT + - Tue, 13 Jul 2021 08:29:34 GMT expires: - '-1' pragma: @@ -6167,7 +5765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '103' x-powered-by: - ASP.NET status: @@ -6187,15 +5785,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dc65e1fb-365b-4efb-8e45-8c49ba0c45f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/59d53bf7-a943-4973-8822-3f69e2121efb?api-version=2021-01-01 response: body: - string: '{"id":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","name":"dc65e1fb-365b-4efb-8e45-8c49ba0c45f8","status":"Succeeded","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"2021-06-25T11:03:13.5338697Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e8b36f2d-9ef3-48e7-a3c5-f915f6805bb4"}}' + string: '{"id":"59d53bf7-a943-4973-8822-3f69e2121efb","name":"59d53bf7-a943-4973-8822-3f69e2121efb","status":"Succeeded","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"2021-07-13T08:29:04.0141105Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4fe4e0db-0cb9-48f4-863b-b990c3024aaf"}}' headers: cache-control: - no-cache @@ -6204,7 +5802,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:44 GMT + - Tue, 13 Jul 2021 08:29:36 GMT expires: - '-1' pragma: @@ -6220,7 +5818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '102' x-powered-by: - ASP.NET status: @@ -6240,25 +5838,25 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e8b36f2d-9ef3-48e7-a3c5-f915f6805bb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4fe4e0db-0cb9-48f4-863b-b990c3024aaf?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e8b36f2d-9ef3-48e7-a3c5-f915f6805bb4","name":"e8b36f2d-9ef3-48e7-a3c5-f915f6805bb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT31.124495S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000006","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-25T11:03:13.5338697Z","endTime":"2021-06-25T11:03:44.6583647Z","activityId":"edbef231-d5a4-11eb-b7a1-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4fe4e0db-0cb9-48f4-863b-b990c3024aaf","name":"4fe4e0db-0cb9-48f4-863b-b990c3024aaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT31.3628441S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000006","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:29:04.0141105Z","endTime":"2021-07-13T08:29:35.3769546Z","activityId":"57344aca-e3b4-11eb-9f46-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '967' + - '968' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:44 GMT + - Tue, 13 Jul 2021 08:29:36 GMT expires: - '-1' pragma: @@ -6275,7 +5873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6295,15 +5893,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -6312,7 +5910,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:45 GMT + - Tue, 13 Jul 2021 08:29:37 GMT expires: - '-1' pragma: @@ -6348,15 +5946,15 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}]}' + 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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache @@ -6365,7 +5963,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:45 GMT + - Tue, 13 Jul 2021 08:29:37 GMT expires: - '-1' pragma: @@ -6401,24 +5999,24 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=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-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":"35185152290256","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","isArchiveEnabled":false}},{"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":"35185132043815","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","isArchiveEnabled":false}}]}' + 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":"879675845","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","isArchiveEnabled":false}},{"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":"1333366220","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '3965' + - '3956' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:46 GMT + - Tue, 13 Jul 2021 08:29:38 GMT expires: - '-1' pragma: @@ -6434,7 +6032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -6443,9 +6041,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T20:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T20:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": "UTC"}}' headers: @@ -6464,15 +6062,15 @@ interactions: ParameterSetName: - --backup-management-type -g -v -n --policy User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-policy5000010","name":"clitest-policy5000010","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -6481,7 +6079,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:47 GMT + - Tue, 13 Jul 2021 08:29:39 GMT expires: - '-1' pragma: @@ -6519,8 +6117,8 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -6534,7 +6132,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:48 GMT + - Tue, 13 Jul 2021 08:29:40 GMT expires: - '-1' pragma: @@ -6554,9 +6152,9 @@ interactions: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", "instantRPDetails": {"azureBackupRGNamePrefix": "RG_prefix", "azureBackupRGNameSuffix": "RG_suffix"}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-25T20:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-07-13T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-25T20:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-07-13T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": "UTC"}}' headers: @@ -6575,15 +6173,15 @@ interactions: ParameterSetName: - -g -v --policy User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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-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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -6592,7 +6190,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:49 GMT + - Tue, 13 Jul 2021 08:29:42 GMT expires: - '-1' pragma: @@ -6608,7 +6206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -6628,15 +6226,15 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' + 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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache @@ -6645,7 +6243,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:49 GMT + - Tue, 13 Jul 2021 08:29:42 GMT expires: - '-1' pragma: @@ -6683,8 +6281,8 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -6698,7 +6296,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:03:50 GMT + - Tue, 13 Jul 2021 08:29:42 GMT expires: - '-1' pragma: @@ -6708,7 +6306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -6728,15 +6326,15 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20: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/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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":["2021-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}]}' + 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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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":["2021-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache @@ -6745,7 +6343,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:50 GMT + - Tue, 13 Jul 2021 08:29:43 GMT expires: - '-1' pragma: @@ -6761,7 +6359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6781,15 +6379,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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-06-25T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-25T20:30: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-07-13T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -6798,7 +6396,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:50 GMT + - Tue, 13 Jul 2021 08:29:44 GMT expires: - '-1' pragma: @@ -6814,7 +6412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6834,15 +6432,15 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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"}},{"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"}}]}' + 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 @@ -6851,7 +6449,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:50 GMT + - Tue, 13 Jul 2021 08:29:44 GMT expires: - '-1' pragma: @@ -6867,7 +6465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -6884,187 +6482,27 @@ interactions: - backup item list Connection: - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"35185152290256","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","isArchiveEnabled":false}},{"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":"35185132043815","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","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3965' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11: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: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"35185152290256","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","isArchiveEnabled":false}},{"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":"35185132043815","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","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3965' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11: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: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.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=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 25 Jun 2021 11:03: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/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + ParameterSetName: + - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","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-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":"879675845","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","isArchiveEnabled":false}},{"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":"1333366220","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3956' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:53 GMT + - Tue, 13 Jul 2021 08:29:45 GMT expires: - '-1' pragma: @@ -7080,7 +6518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -7101,24 +6539,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","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-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":"879675845","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","isArchiveEnabled":false}},{"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":"1333366220","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3956' content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:54 GMT + - Tue, 13 Jul 2021 08:29:46 GMT expires: - '-1' pragma: @@ -7134,7 +6572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -7151,49 +6589,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-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-vm000005/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000005?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","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/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 25 Jun 2021 11:03:55 GMT + - Tue, 13 Jul 2021 08:29: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/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + 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: @@ -7209,15 +6645,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7226,7 +6662,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:57 GMT + - Tue, 13 Jul 2021 08:29:46 GMT expires: - '-1' pragma: @@ -7242,7 +6678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '123' x-powered-by: - ASP.NET status: @@ -7263,15 +6699,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7280,7 +6716,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:58 GMT + - Tue, 13 Jul 2021 08:29:48 GMT expires: - '-1' pragma: @@ -7296,7 +6732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '122' x-powered-by: - ASP.NET status: @@ -7317,15 +6753,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7334,7 +6770,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:03:59 GMT + - Tue, 13 Jul 2021 08:29:49 GMT expires: - '-1' pragma: @@ -7350,7 +6786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '121' x-powered-by: - ASP.NET status: @@ -7371,15 +6807,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7388,7 +6824,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:00 GMT + - Tue, 13 Jul 2021 08:29:50 GMT expires: - '-1' pragma: @@ -7404,7 +6840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '120' x-powered-by: - ASP.NET status: @@ -7425,15 +6861,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7442,7 +6878,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:02 GMT + - Tue, 13 Jul 2021 08:29:51 GMT expires: - '-1' pragma: @@ -7458,7 +6894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '119' x-powered-by: - ASP.NET status: @@ -7479,15 +6915,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7496,7 +6932,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:03 GMT + - Tue, 13 Jul 2021 08:29:53 GMT expires: - '-1' pragma: @@ -7512,7 +6948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '118' x-powered-by: - ASP.NET status: @@ -7533,15 +6969,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7550,7 +6986,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:04 GMT + - Tue, 13 Jul 2021 08:29:54 GMT expires: - '-1' pragma: @@ -7566,7 +7002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '117' x-powered-by: - ASP.NET status: @@ -7587,15 +7023,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7604,7 +7040,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:05 GMT + - Tue, 13 Jul 2021 08:29:55 GMT expires: - '-1' pragma: @@ -7620,7 +7056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '116' x-powered-by: - ASP.NET status: @@ -7641,15 +7077,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7658,7 +7094,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:07 GMT + - Tue, 13 Jul 2021 08:29:56 GMT expires: - '-1' pragma: @@ -7674,7 +7110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '115' x-powered-by: - ASP.NET status: @@ -7695,15 +7131,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7712,7 +7148,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:08 GMT + - Tue, 13 Jul 2021 08:29:58 GMT expires: - '-1' pragma: @@ -7728,7 +7164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '114' x-powered-by: - ASP.NET status: @@ -7749,15 +7185,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7766,7 +7202,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:09 GMT + - Tue, 13 Jul 2021 08:29:59 GMT expires: - '-1' pragma: @@ -7782,7 +7218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '113' x-powered-by: - ASP.NET status: @@ -7803,15 +7239,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7820,7 +7256,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:10 GMT + - Tue, 13 Jul 2021 08:30:00 GMT expires: - '-1' pragma: @@ -7836,7 +7272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '112' x-powered-by: - ASP.NET status: @@ -7857,15 +7293,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7874,7 +7310,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:11 GMT + - Tue, 13 Jul 2021 08:30:02 GMT expires: - '-1' pragma: @@ -7890,7 +7326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '111' x-powered-by: - ASP.NET status: @@ -7911,15 +7347,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7928,7 +7364,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:12 GMT + - Tue, 13 Jul 2021 08:30:03 GMT expires: - '-1' pragma: @@ -7944,7 +7380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '110' x-powered-by: - ASP.NET status: @@ -7965,15 +7401,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7982,7 +7418,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:14 GMT + - Tue, 13 Jul 2021 08:30:04 GMT expires: - '-1' pragma: @@ -7998,7 +7434,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '109' x-powered-by: - ASP.NET status: @@ -8019,15 +7455,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8036,7 +7472,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:15 GMT + - Tue, 13 Jul 2021 08:30:05 GMT expires: - '-1' pragma: @@ -8052,7 +7488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '108' x-powered-by: - ASP.NET status: @@ -8073,15 +7509,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8090,7 +7526,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:16 GMT + - Tue, 13 Jul 2021 08:30:07 GMT expires: - '-1' pragma: @@ -8106,7 +7542,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '107' x-powered-by: - ASP.NET status: @@ -8127,15 +7563,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8144,7 +7580,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:17 GMT + - Tue, 13 Jul 2021 08:30:08 GMT expires: - '-1' pragma: @@ -8160,7 +7596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '106' x-powered-by: - ASP.NET status: @@ -8181,15 +7617,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8198,7 +7634,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:19 GMT + - Tue, 13 Jul 2021 08:30:09 GMT expires: - '-1' pragma: @@ -8214,7 +7650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '105' x-powered-by: - ASP.NET status: @@ -8235,15 +7671,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8252,7 +7688,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:20 GMT + - Tue, 13 Jul 2021 08:30:10 GMT expires: - '-1' pragma: @@ -8268,7 +7704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '104' x-powered-by: - ASP.NET status: @@ -8289,15 +7725,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8306,7 +7742,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:21 GMT + - Tue, 13 Jul 2021 08:30:12 GMT expires: - '-1' pragma: @@ -8322,7 +7758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '103' x-powered-by: - ASP.NET status: @@ -8343,15 +7779,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8360,7 +7796,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:22 GMT + - Tue, 13 Jul 2021 08:30:13 GMT expires: - '-1' pragma: @@ -8376,7 +7812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '102' x-powered-by: - ASP.NET status: @@ -8397,15 +7833,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8414,7 +7850,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:23 GMT + - Tue, 13 Jul 2021 08:30:14 GMT expires: - '-1' pragma: @@ -8430,7 +7866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '101' x-powered-by: - ASP.NET status: @@ -8451,15 +7887,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8468,7 +7904,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:25 GMT + - Tue, 13 Jul 2021 08:30:15 GMT expires: - '-1' pragma: @@ -8484,7 +7920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '100' x-powered-by: - ASP.NET status: @@ -8505,15 +7941,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8522,7 +7958,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:26 GMT + - Tue, 13 Jul 2021 08:30:16 GMT expires: - '-1' pragma: @@ -8538,7 +7974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '99' x-powered-by: - ASP.NET status: @@ -8559,15 +7995,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8576,7 +8012,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:27 GMT + - Tue, 13 Jul 2021 08:30:18 GMT expires: - '-1' pragma: @@ -8592,7 +8028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '98' x-powered-by: - ASP.NET status: @@ -8613,15 +8049,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8630,7 +8066,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:28 GMT + - Tue, 13 Jul 2021 08:30:19 GMT expires: - '-1' pragma: @@ -8646,7 +8082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '97' x-powered-by: - ASP.NET status: @@ -8667,15 +8103,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8684,7 +8120,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:29 GMT + - Tue, 13 Jul 2021 08:30:20 GMT expires: - '-1' pragma: @@ -8700,7 +8136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '96' x-powered-by: - ASP.NET status: @@ -8721,15 +8157,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8738,7 +8174,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:31 GMT + - Tue, 13 Jul 2021 08:30:21 GMT expires: - '-1' pragma: @@ -8754,7 +8190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '95' x-powered-by: - ASP.NET status: @@ -8775,15 +8211,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8792,7 +8228,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:32 GMT + - Tue, 13 Jul 2021 08:30:23 GMT expires: - '-1' pragma: @@ -8808,7 +8244,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '94' x-powered-by: - ASP.NET status: @@ -8829,15 +8265,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8846,7 +8282,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:33 GMT + - Tue, 13 Jul 2021 08:30:24 GMT expires: - '-1' pragma: @@ -8862,7 +8298,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '93' x-powered-by: - ASP.NET status: @@ -8883,15 +8319,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8900,7 +8336,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:34 GMT + - Tue, 13 Jul 2021 08:30:26 GMT expires: - '-1' pragma: @@ -8916,7 +8352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '92' x-powered-by: - ASP.NET status: @@ -8937,15 +8373,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8954,7 +8390,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:36 GMT + - Tue, 13 Jul 2021 08:30:27 GMT expires: - '-1' pragma: @@ -8970,7 +8406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '91' x-powered-by: - ASP.NET status: @@ -8991,15 +8427,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9008,7 +8444,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:37 GMT + - Tue, 13 Jul 2021 08:30:29 GMT expires: - '-1' pragma: @@ -9024,7 +8460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '90' x-powered-by: - ASP.NET status: @@ -9045,15 +8481,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9062,7 +8498,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:38 GMT + - Tue, 13 Jul 2021 08:30:30 GMT expires: - '-1' pragma: @@ -9078,7 +8514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '89' x-powered-by: - ASP.NET status: @@ -9099,15 +8535,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9116,7 +8552,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:39 GMT + - Tue, 13 Jul 2021 08:30:31 GMT expires: - '-1' pragma: @@ -9132,7 +8568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '88' x-powered-by: - ASP.NET status: @@ -9153,15 +8589,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9170,7 +8606,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:40 GMT + - Tue, 13 Jul 2021 08:30:32 GMT expires: - '-1' pragma: @@ -9186,7 +8622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '87' x-powered-by: - ASP.NET status: @@ -9207,15 +8643,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9224,7 +8660,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:42 GMT + - Tue, 13 Jul 2021 08:30:34 GMT expires: - '-1' pragma: @@ -9240,7 +8676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '86' x-powered-by: - ASP.NET status: @@ -9261,15 +8697,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9278,7 +8714,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:43 GMT + - Tue, 13 Jul 2021 08:30:35 GMT expires: - '-1' pragma: @@ -9294,7 +8730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '85' x-powered-by: - ASP.NET status: @@ -9315,15 +8751,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9332,7 +8768,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:44 GMT + - Tue, 13 Jul 2021 08:30:36 GMT expires: - '-1' pragma: @@ -9348,7 +8784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '84' x-powered-by: - ASP.NET status: @@ -9369,15 +8805,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9386,7 +8822,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:45 GMT + - Tue, 13 Jul 2021 08:30:37 GMT expires: - '-1' pragma: @@ -9402,7 +8838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '83' x-powered-by: - ASP.NET status: @@ -9423,15 +8859,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9440,7 +8876,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:46 GMT + - Tue, 13 Jul 2021 08:30:38 GMT expires: - '-1' pragma: @@ -9456,7 +8892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '82' x-powered-by: - ASP.NET status: @@ -9477,15 +8913,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9494,7 +8930,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:48 GMT + - Tue, 13 Jul 2021 08:30:40 GMT expires: - '-1' pragma: @@ -9510,7 +8946,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '81' x-powered-by: - ASP.NET status: @@ -9531,15 +8967,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9548,7 +8984,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:49 GMT + - Tue, 13 Jul 2021 08:30:41 GMT expires: - '-1' pragma: @@ -9564,7 +9000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '80' x-powered-by: - ASP.NET status: @@ -9585,15 +9021,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9602,7 +9038,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:50 GMT + - Tue, 13 Jul 2021 08:30:42 GMT expires: - '-1' pragma: @@ -9618,7 +9054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '79' x-powered-by: - ASP.NET status: @@ -9639,15 +9075,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9656,7 +9092,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:51 GMT + - Tue, 13 Jul 2021 08:30:43 GMT expires: - '-1' pragma: @@ -9672,7 +9108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '78' x-powered-by: - ASP.NET status: @@ -9693,15 +9129,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9710,7 +9146,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:52 GMT + - Tue, 13 Jul 2021 08:30:45 GMT expires: - '-1' pragma: @@ -9726,7 +9162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '77' x-powered-by: - ASP.NET status: @@ -9747,15 +9183,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9764,7 +9200,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:54 GMT + - Tue, 13 Jul 2021 08:30:46 GMT expires: - '-1' pragma: @@ -9780,7 +9216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '76' x-powered-by: - ASP.NET status: @@ -9801,15 +9237,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9818,7 +9254,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:55 GMT + - Tue, 13 Jul 2021 08:30:47 GMT expires: - '-1' pragma: @@ -9834,7 +9270,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '75' x-powered-by: - ASP.NET status: @@ -9855,15 +9291,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9872,7 +9308,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:56 GMT + - Tue, 13 Jul 2021 08:30:48 GMT expires: - '-1' pragma: @@ -9888,7 +9324,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '74' x-powered-by: - ASP.NET status: @@ -9909,15 +9345,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9926,7 +9362,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:57 GMT + - Tue, 13 Jul 2021 08:30:50 GMT expires: - '-1' pragma: @@ -9942,7 +9378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '73' x-powered-by: - ASP.NET status: @@ -9963,15 +9399,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9980,7 +9416,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:04:59 GMT + - Tue, 13 Jul 2021 08:30:51 GMT expires: - '-1' pragma: @@ -9996,7 +9432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '72' x-powered-by: - ASP.NET status: @@ -10017,15 +9453,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10034,7 +9470,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:00 GMT + - Tue, 13 Jul 2021 08:30:52 GMT expires: - '-1' pragma: @@ -10050,7 +9486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '71' x-powered-by: - ASP.NET status: @@ -10071,15 +9507,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10088,7 +9524,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:01 GMT + - Tue, 13 Jul 2021 08:30:53 GMT expires: - '-1' pragma: @@ -10104,7 +9540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '70' x-powered-by: - ASP.NET status: @@ -10125,15 +9561,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10142,7 +9578,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:02 GMT + - Tue, 13 Jul 2021 08:30:55 GMT expires: - '-1' pragma: @@ -10158,7 +9594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '69' x-powered-by: - ASP.NET status: @@ -10179,15 +9615,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10196,7 +9632,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:03 GMT + - Tue, 13 Jul 2021 08:30:56 GMT expires: - '-1' pragma: @@ -10212,7 +9648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '68' x-powered-by: - ASP.NET status: @@ -10233,15 +9669,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10250,7 +9686,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:05 GMT + - Tue, 13 Jul 2021 08:30:57 GMT expires: - '-1' pragma: @@ -10266,7 +9702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '67' x-powered-by: - ASP.NET status: @@ -10287,15 +9723,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10304,7 +9740,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:06 GMT + - Tue, 13 Jul 2021 08:30:58 GMT expires: - '-1' pragma: @@ -10320,7 +9756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '66' x-powered-by: - ASP.NET status: @@ -10341,15 +9777,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10358,7 +9794,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:07 GMT + - Tue, 13 Jul 2021 08:30:59 GMT expires: - '-1' pragma: @@ -10374,7 +9810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '65' x-powered-by: - ASP.NET status: @@ -10395,15 +9831,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10412,7 +9848,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:08 GMT + - Tue, 13 Jul 2021 08:31:01 GMT expires: - '-1' pragma: @@ -10428,7 +9864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '64' x-powered-by: - ASP.NET status: @@ -10449,15 +9885,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10466,7 +9902,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:09 GMT + - Tue, 13 Jul 2021 08:31:02 GMT expires: - '-1' pragma: @@ -10482,7 +9918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '63' x-powered-by: - ASP.NET status: @@ -10503,15 +9939,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10520,7 +9956,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:12 GMT + - Tue, 13 Jul 2021 08:31:03 GMT expires: - '-1' pragma: @@ -10536,7 +9972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '62' x-powered-by: - ASP.NET status: @@ -10557,15 +9993,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10574,7 +10010,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:13 GMT + - Tue, 13 Jul 2021 08:31:04 GMT expires: - '-1' pragma: @@ -10590,7 +10026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '61' x-powered-by: - ASP.NET status: @@ -10611,15 +10047,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10628,7 +10064,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:14 GMT + - Tue, 13 Jul 2021 08:31:06 GMT expires: - '-1' pragma: @@ -10644,7 +10080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '60' x-powered-by: - ASP.NET status: @@ -10665,15 +10101,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10682,7 +10118,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:15 GMT + - Tue, 13 Jul 2021 08:31:07 GMT expires: - '-1' pragma: @@ -10698,7 +10134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '59' x-powered-by: - ASP.NET status: @@ -10719,15 +10155,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10736,7 +10172,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:16 GMT + - Tue, 13 Jul 2021 08:31:08 GMT expires: - '-1' pragma: @@ -10752,7 +10188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '58' x-powered-by: - ASP.NET status: @@ -10773,15 +10209,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10790,7 +10226,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:18 GMT + - Tue, 13 Jul 2021 08:31:10 GMT expires: - '-1' pragma: @@ -10806,7 +10242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '57' x-powered-by: - ASP.NET status: @@ -10827,15 +10263,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10844,7 +10280,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:19 GMT + - Tue, 13 Jul 2021 08:31:11 GMT expires: - '-1' pragma: @@ -10860,7 +10296,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '56' x-powered-by: - ASP.NET status: @@ -10881,15 +10317,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10898,7 +10334,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:20 GMT + - Tue, 13 Jul 2021 08:31:12 GMT expires: - '-1' pragma: @@ -10914,7 +10350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '55' x-powered-by: - ASP.NET status: @@ -10935,15 +10371,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10952,7 +10388,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:21 GMT + - Tue, 13 Jul 2021 08:31:13 GMT expires: - '-1' pragma: @@ -10968,7 +10404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '54' x-powered-by: - ASP.NET status: @@ -10989,15 +10425,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11006,7 +10442,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:22 GMT + - Tue, 13 Jul 2021 08:31:15 GMT expires: - '-1' pragma: @@ -11022,7 +10458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '53' x-powered-by: - ASP.NET status: @@ -11043,15 +10479,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11060,7 +10496,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:24 GMT + - Tue, 13 Jul 2021 08:31:16 GMT expires: - '-1' pragma: @@ -11076,7 +10512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '52' x-powered-by: - ASP.NET status: @@ -11097,15 +10533,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11114,7 +10550,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:25 GMT + - Tue, 13 Jul 2021 08:31:17 GMT expires: - '-1' pragma: @@ -11130,7 +10566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '51' x-powered-by: - ASP.NET status: @@ -11151,15 +10587,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11168,7 +10604,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:26 GMT + - Tue, 13 Jul 2021 08:31:19 GMT expires: - '-1' pragma: @@ -11184,7 +10620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '50' x-powered-by: - ASP.NET status: @@ -11205,15 +10641,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11222,7 +10658,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:27 GMT + - Tue, 13 Jul 2021 08:31:20 GMT expires: - '-1' pragma: @@ -11238,7 +10674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '49' x-powered-by: - ASP.NET status: @@ -11259,15 +10695,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11276,7 +10712,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:28 GMT + - Tue, 13 Jul 2021 08:31:21 GMT expires: - '-1' pragma: @@ -11292,7 +10728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '48' x-powered-by: - ASP.NET status: @@ -11313,15 +10749,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11330,7 +10766,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:30 GMT + - Tue, 13 Jul 2021 08:31:22 GMT expires: - '-1' pragma: @@ -11346,7 +10782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '47' x-powered-by: - ASP.NET status: @@ -11367,15 +10803,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11384,7 +10820,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:31 GMT + - Tue, 13 Jul 2021 08:31:23 GMT expires: - '-1' pragma: @@ -11400,7 +10836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '46' x-powered-by: - ASP.NET status: @@ -11421,15 +10857,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11438,7 +10874,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:32 GMT + - Tue, 13 Jul 2021 08:31:25 GMT expires: - '-1' pragma: @@ -11454,7 +10890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '45' x-powered-by: - ASP.NET status: @@ -11475,15 +10911,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11492,7 +10928,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:33 GMT + - Tue, 13 Jul 2021 08:31:26 GMT expires: - '-1' pragma: @@ -11508,7 +10944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '44' x-powered-by: - ASP.NET status: @@ -11529,15 +10965,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11546,7 +10982,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:35 GMT + - Tue, 13 Jul 2021 08:31:27 GMT expires: - '-1' pragma: @@ -11562,7 +10998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '43' x-powered-by: - ASP.NET status: @@ -11583,15 +11019,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11600,7 +11036,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:36 GMT + - Tue, 13 Jul 2021 08:31:28 GMT expires: - '-1' pragma: @@ -11616,7 +11052,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '42' x-powered-by: - ASP.NET status: @@ -11637,15 +11073,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11654,7 +11090,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:37 GMT + - Tue, 13 Jul 2021 08:31:30 GMT expires: - '-1' pragma: @@ -11670,7 +11106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '41' x-powered-by: - ASP.NET status: @@ -11691,15 +11127,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11708,7 +11144,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:38 GMT + - Tue, 13 Jul 2021 08:31:31 GMT expires: - '-1' pragma: @@ -11724,7 +11160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '40' x-powered-by: - ASP.NET status: @@ -11745,15 +11181,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11762,7 +11198,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:39 GMT + - Tue, 13 Jul 2021 08:31:32 GMT expires: - '-1' pragma: @@ -11778,7 +11214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '39' x-powered-by: - ASP.NET status: @@ -11799,15 +11235,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11816,7 +11252,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:41 GMT + - Tue, 13 Jul 2021 08:31:33 GMT expires: - '-1' pragma: @@ -11832,7 +11268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '38' x-powered-by: - ASP.NET status: @@ -11853,15 +11289,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11870,7 +11306,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:42 GMT + - Tue, 13 Jul 2021 08:31:34 GMT expires: - '-1' pragma: @@ -11886,7 +11322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '37' x-powered-by: - ASP.NET status: @@ -11907,15 +11343,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11924,7 +11360,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:43 GMT + - Tue, 13 Jul 2021 08:31:36 GMT expires: - '-1' pragma: @@ -11940,7 +11376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '36' x-powered-by: - ASP.NET status: @@ -11961,15 +11397,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"InProgress","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"InProgress","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11978,7 +11414,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:44 GMT + - Tue, 13 Jul 2021 08:31:37 GMT expires: - '-1' pragma: @@ -11994,7 +11430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '35' x-powered-by: - ASP.NET status: @@ -12015,15 +11451,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2aa6dec6-c68b-4441-9773-1b384d36278d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683?api-version=2021-01-01 response: body: - string: '{"id":"2aa6dec6-c68b-4441-9773-1b384d36278d","name":"2aa6dec6-c68b-4441-9773-1b384d36278d","status":"Succeeded","startTime":"2021-06-25T11:03:52.9681896Z","endTime":"2021-06-25T11:03:52.9681896Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"031908a4-a1fb-40aa-907e-22dc99d0a849"}}' + string: '{"id":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","name":"3ab0bfaf-f4e4-4367-ba61-d3dc70a5f683","status":"Succeeded","startTime":"2021-07-13T08:29:47.0551654Z","endTime":"2021-07-13T08:29:47.0551654Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"dbbcbb3c-6eff-4dcc-a54f-4e3fa99d2fd3"}}' headers: cache-control: - no-cache @@ -12032,7 +11468,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:46 GMT + - Tue, 13 Jul 2021 08:31:38 GMT expires: - '-1' pragma: @@ -12048,7 +11484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '34' x-powered-by: - ASP.NET status: @@ -12069,16 +11505,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031908a4-a1fb-40aa-907e-22dc99d0a849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dbbcbb3c-6eff-4dcc-a54f-4e3fa99d2fd3?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031908a4-a1fb-40aa-907e-22dc99d0a849","name":"031908a4-a1fb-40aa-907e-22dc99d0a849","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT1M52.5229439S","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-06-25T11:03:52.9681896Z","endTime":"2021-06-25T11:05:45.4911335Z","activityId":"0663aa34-d5a5-11eb-b052-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dbbcbb3c-6eff-4dcc-a54f-4e3fa99d2fd3","name":"dbbcbb3c-6eff-4dcc-a54f-4e3fa99d2fd3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT1M51.9206561S","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-07-13T08:29:47.0551654Z","endTime":"2021-07-13T08:31:38.9758215Z","activityId":"79912866-e3b4-11eb-a0a6-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12087,7 +11523,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:45 GMT + - Tue, 13 Jul 2021 08:31:40 GMT expires: - '-1' pragma: @@ -12104,7 +11540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -12124,24 +11560,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"35185132043815","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","isArchiveEnabled":false}}]}' + 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":"1333366220","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1988' + - '1984' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:46 GMT + - Tue, 13 Jul 2021 08:31:40 GMT expires: - '-1' pragma: @@ -12157,7 +11593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -12178,24 +11614,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-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":"35185132043815","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","isArchiveEnabled":false}}]}' + 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":"1333366220","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1988' + - '1984' content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:46 GMT + - Tue, 13 Jul 2021 08:31:40 GMT expires: - '-1' pragma: @@ -12211,7 +11647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -12234,28 +11670,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000006/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000006?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Jun 2021 11:05:47 GMT + - Tue, 13 Jul 2021 08:31: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/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -12263,7 +11699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -12284,15 +11720,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12301,7 +11737,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:47 GMT + - Tue, 13 Jul 2021 08:31:41 GMT expires: - '-1' pragma: @@ -12338,15 +11774,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12355,7 +11791,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:49 GMT + - Tue, 13 Jul 2021 08:31:43 GMT expires: - '-1' pragma: @@ -12392,15 +11828,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12409,7 +11845,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:50 GMT + - Tue, 13 Jul 2021 08:31:44 GMT expires: - '-1' pragma: @@ -12446,15 +11882,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12463,7 +11899,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:51 GMT + - Tue, 13 Jul 2021 08:31:46 GMT expires: - '-1' pragma: @@ -12500,15 +11936,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12517,7 +11953,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:52 GMT + - Tue, 13 Jul 2021 08:31:47 GMT expires: - '-1' pragma: @@ -12554,15 +11990,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12571,7 +12007,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:53 GMT + - Tue, 13 Jul 2021 08:31:48 GMT expires: - '-1' pragma: @@ -12608,15 +12044,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12625,7 +12061,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:55 GMT + - Tue, 13 Jul 2021 08:31:49 GMT expires: - '-1' pragma: @@ -12662,15 +12098,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12679,7 +12115,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:56 GMT + - Tue, 13 Jul 2021 08:31:50 GMT expires: - '-1' pragma: @@ -12716,15 +12152,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12733,7 +12169,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:57 GMT + - Tue, 13 Jul 2021 08:31:52 GMT expires: - '-1' pragma: @@ -12770,15 +12206,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12787,7 +12223,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:58 GMT + - Tue, 13 Jul 2021 08:31:53 GMT expires: - '-1' pragma: @@ -12824,15 +12260,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12841,7 +12277,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:05:59 GMT + - Tue, 13 Jul 2021 08:31:54 GMT expires: - '-1' pragma: @@ -12878,15 +12314,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12895,7 +12331,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:01 GMT + - Tue, 13 Jul 2021 08:31:55 GMT expires: - '-1' pragma: @@ -12932,15 +12368,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12949,7 +12385,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:02 GMT + - Tue, 13 Jul 2021 08:31:57 GMT expires: - '-1' pragma: @@ -12986,15 +12422,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13003,7 +12439,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:03 GMT + - Tue, 13 Jul 2021 08:31:58 GMT expires: - '-1' pragma: @@ -13040,15 +12476,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13057,7 +12493,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:04 GMT + - Tue, 13 Jul 2021 08:31:59 GMT expires: - '-1' pragma: @@ -13094,15 +12530,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13111,7 +12547,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:06 GMT + - Tue, 13 Jul 2021 08:32:00 GMT expires: - '-1' pragma: @@ -13148,15 +12584,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13165,7 +12601,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:07 GMT + - Tue, 13 Jul 2021 08:32:02 GMT expires: - '-1' pragma: @@ -13202,15 +12638,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13219,7 +12655,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:08 GMT + - Tue, 13 Jul 2021 08:32:03 GMT expires: - '-1' pragma: @@ -13256,15 +12692,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13273,7 +12709,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:10 GMT + - Tue, 13 Jul 2021 08:32:04 GMT expires: - '-1' pragma: @@ -13310,15 +12746,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13327,7 +12763,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:11 GMT + - Tue, 13 Jul 2021 08:32:05 GMT expires: - '-1' pragma: @@ -13364,15 +12800,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13381,7 +12817,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:13 GMT + - Tue, 13 Jul 2021 08:32:07 GMT expires: - '-1' pragma: @@ -13418,15 +12854,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13435,7 +12871,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:14 GMT + - Tue, 13 Jul 2021 08:32:08 GMT expires: - '-1' pragma: @@ -13472,15 +12908,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13489,7 +12925,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:15 GMT + - Tue, 13 Jul 2021 08:32:09 GMT expires: - '-1' pragma: @@ -13526,15 +12962,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13543,7 +12979,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:16 GMT + - Tue, 13 Jul 2021 08:32:10 GMT expires: - '-1' pragma: @@ -13580,15 +13016,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13597,7 +13033,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:18 GMT + - Tue, 13 Jul 2021 08:32:12 GMT expires: - '-1' pragma: @@ -13634,15 +13070,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13651,7 +13087,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:19 GMT + - Tue, 13 Jul 2021 08:32:13 GMT expires: - '-1' pragma: @@ -13688,15 +13124,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13705,7 +13141,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:20 GMT + - Tue, 13 Jul 2021 08:32:14 GMT expires: - '-1' pragma: @@ -13742,15 +13178,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13759,7 +13195,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:21 GMT + - Tue, 13 Jul 2021 08:32:15 GMT expires: - '-1' pragma: @@ -13796,15 +13232,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13813,7 +13249,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:22 GMT + - Tue, 13 Jul 2021 08:32:17 GMT expires: - '-1' pragma: @@ -13850,15 +13286,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13867,7 +13303,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:24 GMT + - Tue, 13 Jul 2021 08:32:18 GMT expires: - '-1' pragma: @@ -13904,15 +13340,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13921,7 +13357,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:25 GMT + - Tue, 13 Jul 2021 08:32:19 GMT expires: - '-1' pragma: @@ -13958,15 +13394,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13975,7 +13411,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:26 GMT + - Tue, 13 Jul 2021 08:32:20 GMT expires: - '-1' pragma: @@ -14012,15 +13448,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14029,7 +13465,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:27 GMT + - Tue, 13 Jul 2021 08:32:22 GMT expires: - '-1' pragma: @@ -14066,15 +13502,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14083,7 +13519,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:29 GMT + - Tue, 13 Jul 2021 08:32:23 GMT expires: - '-1' pragma: @@ -14120,15 +13556,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14137,7 +13573,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:30 GMT + - Tue, 13 Jul 2021 08:32:24 GMT expires: - '-1' pragma: @@ -14174,15 +13610,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14191,7 +13627,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:31 GMT + - Tue, 13 Jul 2021 08:32:25 GMT expires: - '-1' pragma: @@ -14228,15 +13664,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14245,7 +13681,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:32 GMT + - Tue, 13 Jul 2021 08:32:26 GMT expires: - '-1' pragma: @@ -14282,15 +13718,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14299,7 +13735,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:34 GMT + - Tue, 13 Jul 2021 08:32:28 GMT expires: - '-1' pragma: @@ -14336,15 +13772,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14353,7 +13789,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:35 GMT + - Tue, 13 Jul 2021 08:32:29 GMT expires: - '-1' pragma: @@ -14390,15 +13826,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14407,7 +13843,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:36 GMT + - Tue, 13 Jul 2021 08:32:30 GMT expires: - '-1' pragma: @@ -14444,15 +13880,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14461,7 +13897,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:37 GMT + - Tue, 13 Jul 2021 08:32:32 GMT expires: - '-1' pragma: @@ -14498,15 +13934,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14515,7 +13951,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:38 GMT + - Tue, 13 Jul 2021 08:32:33 GMT expires: - '-1' pragma: @@ -14552,15 +13988,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14569,7 +14005,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:40 GMT + - Tue, 13 Jul 2021 08:32:34 GMT expires: - '-1' pragma: @@ -14606,15 +14042,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14623,7 +14059,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:41 GMT + - Tue, 13 Jul 2021 08:32:35 GMT expires: - '-1' pragma: @@ -14660,15 +14096,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14677,7 +14113,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:42 GMT + - Tue, 13 Jul 2021 08:32:37 GMT expires: - '-1' pragma: @@ -14714,15 +14150,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14731,7 +14167,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:43 GMT + - Tue, 13 Jul 2021 08:32:38 GMT expires: - '-1' pragma: @@ -14768,15 +14204,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14785,7 +14221,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:44 GMT + - Tue, 13 Jul 2021 08:32:39 GMT expires: - '-1' pragma: @@ -14822,15 +14258,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14839,7 +14275,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:46 GMT + - Tue, 13 Jul 2021 08:32:40 GMT expires: - '-1' pragma: @@ -14876,15 +14312,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14893,7 +14329,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:47 GMT + - Tue, 13 Jul 2021 08:32:43 GMT expires: - '-1' pragma: @@ -14930,15 +14366,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14947,7 +14383,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:48 GMT + - Tue, 13 Jul 2021 08:32:44 GMT expires: - '-1' pragma: @@ -14984,15 +14420,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15001,7 +14437,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:49 GMT + - Tue, 13 Jul 2021 08:32:45 GMT expires: - '-1' pragma: @@ -15038,15 +14474,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15055,7 +14491,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:51 GMT + - Tue, 13 Jul 2021 08:32:46 GMT expires: - '-1' pragma: @@ -15092,15 +14528,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15109,7 +14545,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:52 GMT + - Tue, 13 Jul 2021 08:32:48 GMT expires: - '-1' pragma: @@ -15146,15 +14582,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15163,7 +14599,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:53 GMT + - Tue, 13 Jul 2021 08:32:49 GMT expires: - '-1' pragma: @@ -15200,15 +14636,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15217,7 +14653,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:54 GMT + - Tue, 13 Jul 2021 08:32:50 GMT expires: - '-1' pragma: @@ -15254,15 +14690,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15271,7 +14707,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:56 GMT + - Tue, 13 Jul 2021 08:32:51 GMT expires: - '-1' pragma: @@ -15308,15 +14744,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15325,7 +14761,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:57 GMT + - Tue, 13 Jul 2021 08:32:53 GMT expires: - '-1' pragma: @@ -15362,15 +14798,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15379,7 +14815,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:58 GMT + - Tue, 13 Jul 2021 08:32:54 GMT expires: - '-1' pragma: @@ -15416,15 +14852,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15433,7 +14869,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:06:59 GMT + - Tue, 13 Jul 2021 08:32:55 GMT expires: - '-1' pragma: @@ -15470,15 +14906,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15487,7 +14923,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:01 GMT + - Tue, 13 Jul 2021 08:32:56 GMT expires: - '-1' pragma: @@ -15524,15 +14960,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15541,7 +14977,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:02 GMT + - Tue, 13 Jul 2021 08:32:58 GMT expires: - '-1' pragma: @@ -15578,15 +15014,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15595,7 +15031,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:03 GMT + - Tue, 13 Jul 2021 08:32:59 GMT expires: - '-1' pragma: @@ -15632,15 +15068,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15649,7 +15085,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:04 GMT + - Tue, 13 Jul 2021 08:33:00 GMT expires: - '-1' pragma: @@ -15686,15 +15122,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15703,7 +15139,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:05 GMT + - Tue, 13 Jul 2021 08:33:01 GMT expires: - '-1' pragma: @@ -15740,15 +15176,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15757,7 +15193,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:07 GMT + - Tue, 13 Jul 2021 08:33:03 GMT expires: - '-1' pragma: @@ -15794,15 +15230,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15811,7 +15247,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:09 GMT + - Tue, 13 Jul 2021 08:33:04 GMT expires: - '-1' pragma: @@ -15848,15 +15284,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15865,7 +15301,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:10 GMT + - Tue, 13 Jul 2021 08:33:05 GMT expires: - '-1' pragma: @@ -15902,15 +15338,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15919,7 +15355,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:11 GMT + - Tue, 13 Jul 2021 08:33:06 GMT expires: - '-1' pragma: @@ -15956,15 +15392,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15973,7 +15409,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:12 GMT + - Tue, 13 Jul 2021 08:33:07 GMT expires: - '-1' pragma: @@ -16010,15 +15446,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16027,7 +15463,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:14 GMT + - Tue, 13 Jul 2021 08:33:09 GMT expires: - '-1' pragma: @@ -16064,15 +15500,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16081,7 +15517,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:15 GMT + - Tue, 13 Jul 2021 08:33:10 GMT expires: - '-1' pragma: @@ -16118,15 +15554,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16135,7 +15571,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:16 GMT + - Tue, 13 Jul 2021 08:33:11 GMT expires: - '-1' pragma: @@ -16172,15 +15608,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16189,7 +15625,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:17 GMT + - Tue, 13 Jul 2021 08:33:12 GMT expires: - '-1' pragma: @@ -16226,15 +15662,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16243,7 +15679,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:19 GMT + - Tue, 13 Jul 2021 08:33:14 GMT expires: - '-1' pragma: @@ -16280,15 +15716,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16297,7 +15733,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:20 GMT + - Tue, 13 Jul 2021 08:33:15 GMT expires: - '-1' pragma: @@ -16334,15 +15770,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16351,7 +15787,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:21 GMT + - Tue, 13 Jul 2021 08:33:16 GMT expires: - '-1' pragma: @@ -16388,15 +15824,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16405,7 +15841,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:22 GMT + - Tue, 13 Jul 2021 08:33:17 GMT expires: - '-1' pragma: @@ -16442,15 +15878,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16459,7 +15895,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:24 GMT + - Tue, 13 Jul 2021 08:33:19 GMT expires: - '-1' pragma: @@ -16496,15 +15932,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16513,7 +15949,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:25 GMT + - Tue, 13 Jul 2021 08:33:20 GMT expires: - '-1' pragma: @@ -16550,15 +15986,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16567,7 +16003,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:26 GMT + - Tue, 13 Jul 2021 08:33:21 GMT expires: - '-1' pragma: @@ -16604,15 +16040,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16621,7 +16057,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:27 GMT + - Tue, 13 Jul 2021 08:33:22 GMT expires: - '-1' pragma: @@ -16658,15 +16094,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16675,7 +16111,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:29 GMT + - Tue, 13 Jul 2021 08:33:24 GMT expires: - '-1' pragma: @@ -16712,15 +16148,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16729,7 +16165,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:30 GMT + - Tue, 13 Jul 2021 08:33:25 GMT expires: - '-1' pragma: @@ -16766,15 +16202,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16783,7 +16219,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:31 GMT + - Tue, 13 Jul 2021 08:33:26 GMT expires: - '-1' pragma: @@ -16820,15 +16256,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16837,7 +16273,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:32 GMT + - Tue, 13 Jul 2021 08:33:27 GMT expires: - '-1' pragma: @@ -16874,15 +16310,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16891,7 +16327,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:34 GMT + - Tue, 13 Jul 2021 08:33:29 GMT expires: - '-1' pragma: @@ -16928,15 +16364,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16945,7 +16381,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:35 GMT + - Tue, 13 Jul 2021 08:33:30 GMT expires: - '-1' pragma: @@ -16982,15 +16418,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16999,7 +16435,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:36 GMT + - Tue, 13 Jul 2021 08:33:31 GMT expires: - '-1' pragma: @@ -17036,15 +16472,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"InProgress","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17053,7 +16489,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:37 GMT + - Tue, 13 Jul 2021 08:33:33 GMT expires: - '-1' pragma: @@ -17090,69 +16526,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 - response: - body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"InProgress","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Fri, 25 Jun 2021 11:07: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: - - '60' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/29dc784d-8cab-4a0b-a01d-5e372b6748f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4aef1b67-8f90-4e09-a556-b0c40cbe8077?api-version=2021-01-01 response: body: - string: '{"id":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","name":"29dc784d-8cab-4a0b-a01d-5e372b6748f6","status":"Succeeded","startTime":"2021-06-25T11:05:48.0089749Z","endTime":"2021-06-25T11:05:48.0089749Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c5c96756-ec17-4043-b017-504b3cae2c4f"}}' + string: '{"id":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","name":"4aef1b67-8f90-4e09-a556-b0c40cbe8077","status":"Succeeded","startTime":"2021-07-13T08:31:41.6508566Z","endTime":"2021-07-13T08:31:41.6508566Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0a178d0e-8ef0-4aa9-bd16-8b19beaecc34"}}' headers: cache-control: - no-cache @@ -17161,7 +16543,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:40 GMT + - Tue, 13 Jul 2021 08:33:34 GMT expires: - '-1' pragma: @@ -17177,7 +16559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '60' x-powered-by: - ASP.NET status: @@ -17198,16 +16580,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c5c96756-ec17-4043-b017-504b3cae2c4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0a178d0e-8ef0-4aa9-bd16-8b19beaecc34?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c5c96756-ec17-4043-b017-504b3cae2c4f","name":"c5c96756-ec17-4043-b017-504b3cae2c4f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT1M52.0874607S","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-06-25T11:05:48.0089749Z","endTime":"2021-06-25T11:07:40.0964356Z","activityId":"4b000b4e-d5a5-11eb-9259-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0a178d0e-8ef0-4aa9-bd16-8b19beaecc34","name":"0a178d0e-8ef0-4aa9-bd16-8b19beaecc34","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT1M52.1682843S","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-07-13T08:31:41.6508566Z","endTime":"2021-07-13T08:33:33.8191409Z","activityId":"be144b88-e3b4-11eb-8322-00155ddc6812"}}' headers: cache-control: - no-cache @@ -17216,7 +16598,7 @@ interactions: content-type: - application/json date: - - Fri, 25 Jun 2021 11:07:40 GMT + - Tue, 13 Jul 2021 08:33:35 GMT expires: - '-1' pragma: @@ -17233,7 +16615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -17243,7 +16625,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -17255,9 +16637,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -17267,7 +16649,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Jun 2021 11:07:42 GMT + - Tue, 13 Jul 2021 08:33:38 GMT expires: - '-1' pragma: @@ -17281,4 +16663,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 af6be79af43..7ce3ce2be72 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T14%3A01%3A45.7946673Z''\"","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-07-13T08%3A53%3A22.6566167Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:01:45 GMT + - Tue, 13 Jul 2021 08:53:22 GMT expires: - '-1' pragma: @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:01:46 GMT + - Tue, 13 Jul 2021 08:53:23 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:01:47 GMT + - Tue, 13 Jul 2021 08:53:23 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T14:01:42Z"},"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-07-13T08:53:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:01:47 GMT + - Tue, 13 Jul 2021 08:53:24 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 14:01:48 GMT + - Tue, 13 Jul 2021 08:53:25 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 14:06:48 GMT + - Tue, 13 Jul 2021 08:58:25 GMT source-age: - - '106' + - '90' strict-transport-security: - max-age=31536000 vary: @@ -285,15 +286,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 0c8b067ac939f3145a53976b13c46c161f2e6c71 + - 83f271d06cd8d976c37d6a821c54f1e75d1c6be1 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1253-QPG + - cache-qpg1267-QPG x-timer: - - S1624284108.405489,VS0,VE1 + - S1626166405.375318,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:01:48 GMT + - Tue, 13 Jul 2021 08:53:25 GMT expires: - '-1' pragma: @@ -395,23 +396,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_VYlPxq1z3JnZePT2wvEVveRRGyxEVJff","name":"vm_deploy_VYlPxq1z3JnZePT2wvEVveRRGyxEVJff","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11555091624522030011","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T14:01:49.8742608Z","duration":"PT0.6848778S","correlationId":"508a9f53-356e-46c8-b5ba-f65b8a7c862a","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_3OVrGR1z01rjKrmyeDGWoOdBHhyPRneq","name":"vm_deploy_3OVrGR1z01rjKrmyeDGWoOdBHhyPRneq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6015843658406838832","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T08:53:27.2477629Z","duration":"PT0.8487859S","correlationId":"3440c3c0-c111-4bf6-8011-582641f64485","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_VYlPxq1z3JnZePT2wvEVveRRGyxEVJff/operationStatuses/08585773227762882626?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3OVrGR1z01rjKrmyeDGWoOdBHhyPRneq/operationStatuses/08585754404790786619?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2961' + - '2960' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:01:49 GMT + - Tue, 13 Jul 2021 08:53:26 GMT expires: - '-1' pragma: @@ -421,7 +422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -439,9 +440,93 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754404790786619?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: + - Tue, 13 Jul 2021 08:53:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754404790786619?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: + - Tue, 13 Jul 2021 08:54: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773227762882626?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/08585754404790786619?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:20 GMT + - Tue, 13 Jul 2021 08:54:57 GMT expires: - '-1' pragma: @@ -481,9 +566,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773227762882626?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/08585754404790786619?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:50 GMT + - Tue, 13 Jul 2021 08:55:28 GMT expires: - '-1' pragma: @@ -523,21 +608,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_VYlPxq1z3JnZePT2wvEVveRRGyxEVJff","name":"vm_deploy_VYlPxq1z3JnZePT2wvEVveRRGyxEVJff","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11555091624522030011","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T14:02:33.1028043Z","duration":"PT43.9134213S","correlationId":"508a9f53-356e-46c8-b5ba-f65b8a7c862a","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_3OVrGR1z01rjKrmyeDGWoOdBHhyPRneq","name":"vm_deploy_3OVrGR1z01rjKrmyeDGWoOdBHhyPRneq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6015843658406838832","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T08:55:00.5437344Z","duration":"PT1M34.1447574S","correlationId":"3440c3c0-c111-4bf6-8011-582641f64485","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' + - '4087' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:50 GMT + - Tue, 13 Jul 2021 08:55:28 GMT expires: - '-1' pragma: @@ -565,7 +650,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -574,16 +659,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\": \"a5e50cc5-d167-422a-b93b-915a419ed262\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4f8ca895-5c09-4008-98c2-5146acd66740\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b095cf0162ef4673bd56fb4d81287076\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_713956ce711c4ce8a7c67b8236b13b70\",\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_b095cf0162ef4673bd56fb4d81287076\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_713956ce711c4ce8a7c67b8236b13b70\"\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\": @@ -597,16 +682,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\": \"2021-06-21T14:02:51+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T08:55:28+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_b095cf0162ef4673bd56fb4d81287076\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_713956ce711c4ce8a7c67b8236b13b70\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T14:02:00.7714964+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:53:46.9125405+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T14:02:29.6621261+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T08:54:57.2093888+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}" @@ -614,11 +699,11 @@ interactions: cache-control: - no-cache content-length: - - '3464' + - '3473' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:50 GMT + - Tue, 13 Jul 2021 08:55:28 GMT expires: - '-1' pragma: @@ -635,7 +720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31938 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31935 status: code: 200 message: OK @@ -653,20 +738,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"41b6caa2-f379-4f61-809e-5b23a554c839\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f3275ece-88ef-4769-95f4-c65836f3d57c\\\"\",\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\": \"cdd6b9fb-2a51-4e24-80b3-d4f965aa3bd3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"e7ad905a-f8ba-4889-a3bf-ec4d3804407e\",\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/\\\"41b6caa2-f379-4f61-809e-5b23a554c839\\\"\",\r\n + \ \"etag\": \"W/\\\"f3275ece-88ef-4769-95f4-c65836f3d57c\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +760,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\": - \"l1gqc1uqkf5uhfidg53illvjqh.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-A0-18-9A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"f3ug0pmpio1ezefblhze5drtxf.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-55-77-B4\",\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\": @@ -690,9 +775,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:50 GMT + - Tue, 13 Jul 2021 08:55:28 GMT etag: - - W/"41b6caa2-f379-4f61-809e-5b23a554c839" + - W/"f3275ece-88ef-4769-95f4-c65836f3d57c" expires: - '-1' pragma: @@ -709,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3035874f-4b22-4f4b-a86f-32016cb4ec84 + - 2a11297e-3539-4764-a08e-3b83a6987c7b status: code: 200 message: OK @@ -727,18 +812,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"aad07870-b520-4da9-8d4e-85ffaaa7da8b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cc74c06e-1ab7-44d7-9f24-fc36699d4ce5\\\"\",\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\": \"ef4a7253-a34d-4d5d-b236-e57150a3d700\",\r\n - \ \"ipAddress\": \"20.205.231.3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"a3fa0be6-e587-40bf-8ca8-ff6a20485f94\",\r\n + \ \"ipAddress\": \"52.163.91.2\",\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 @@ -747,13 +832,13 @@ interactions: cache-control: - no-cache content-length: - - '1181' + - '1180' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:50 GMT + - Tue, 13 Jul 2021 08:55:28 GMT etag: - - W/"aad07870-b520-4da9-8d4e-85ffaaa7da8b" + - W/"cc74c06e-1ab7-44d7-9f24-fc36699d4ce5" expires: - '-1' pragma: @@ -770,7 +855,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5dcf69b7-a966-41b5-b571-287fe27e66b5 + - 3822546f-c21d-49de-a098-4b0e9971d1a8 status: code: 200 message: OK @@ -788,7 +873,7 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -797,16 +882,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\": \"a5e50cc5-d167-422a-b93b-915a419ed262\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4f8ca895-5c09-4008-98c2-5146acd66740\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b095cf0162ef4673bd56fb4d81287076\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_713956ce711c4ce8a7c67b8236b13b70\",\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_b095cf0162ef4673bd56fb4d81287076\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_713956ce711c4ce8a7c67b8236b13b70\"\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\": @@ -820,11 +905,11 @@ interactions: cache-control: - no-cache content-length: - - '2249' + - '2255' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:51 GMT + - Tue, 13 Jul 2021 08:55:28 GMT expires: - '-1' pragma: @@ -841,7 +926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31937 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31934 status: code: 200 message: OK @@ -859,39 +944,39 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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/providers/Microsoft.RecoveryServices/vaults?api-version=2021-03-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\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2021-06-17T17%3A23%3A15.8657762Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLI\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"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\":\"eastasia\",\"name\":\"akneema-vault-ea\",\"etag\":\"W/\\\"datetime'2021-06-18T05%3A26%3A19.3012951Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"CLI\",\"Owner\":\"akneema\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ea\",\"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\":\"westindia\",\"name\":\"geettest1\",\"etag\":\"W/\\\"datetime'2021-03-04T10%3A22%3A56.9671205Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Auto - Shutdown\":\"No\",\"DeleteBy\":\"01-2022\",\"Owner\":\"gesahoo\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testVMgeesahoo_group/providers/Microsoft.RecoveryServices/vaults/geettest1\",\"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'2021-03-23T06%3A00%3A10.4507864Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/akkanaselrs/providers/microsoft.managedidentity/userassignedidentities/cmktestidentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"objectId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"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\":\"hiagaSrcRG1\",\"etag\":\"W/\\\"datetime'2021-05-13T11%3A52%3A38.3808391Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"Delete By\":\"05-2020\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1\",\"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\":\"hiagaSrcVault2\",\"etag\":\"W/\\\"datetime'2021-05-31T10%3A44%3A49.9950779Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"03-2022\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"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'2021-04-28T16%3A39%3A07.8341181Z'\\\"\",\"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-cli-test-vault\",\"etag\":\"W/\\\"datetime'2021-06-21T09%3A00%3A09.8379618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-cli-test-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"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\":\"akneema-vault-crr\",\"etag\":\"W/\\\"datetime'2021-06-17T18%3A42%3A55.4788796Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLI\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-crr\",\"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\":\"vault42\",\"etag\":\"W/\\\"datetime'2021-03-09T10%3A58%3A49.2838109Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault42\",\"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-vaultq3ma7bfiygl\",\"etag\":\"W/\\\"datetime'2021-06-14T07%3A33%3A30.0008612Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2021-06-21T14%3A01%3A45.7946673Z'\\\"\",\"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-vaultapntlpa5sak\",\"etag\":\"W/\\\"datetime'2021-06-14T07%3A33%3A39.4258298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak\",\"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\":\"gesahoo1\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A41%3A43.2269964Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoo12\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A38%3A22.7858659Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo12\",\"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\":\"gesahoosql\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A12%3A51.1997421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoosql\",\"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\":\"gesahoovault1\",\"etag\":\"W/\\\"datetime'2021-05-20T06%3A52%3A28.3837417Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\",\"DeleteBy\":\"01-2022\",\"AutoShutdown\":\"No\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault1\",\"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\":\"PSTestRSV4a930a0c\",\"etag\":\"W/\\\"datetime'2021-05-18T15%3A23%3A10.4642162Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"PSTestRSV7e8b8161\",\"etag\":\"W/\\\"datetime'2021-06-08T06%3A39%3A42.72721Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"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'2021-05-25T16%3A58%3A51.4828365Z'\\\"\",\"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\"}}]}" + string: '{"value":[{"location":"westus","name":"adds","etag":"W/\"datetime''2021-05-31T07%3A02%3A42.5074403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/adds","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"CmkTestSkipWL","etag":"W/\"datetime''2020-05-21T14%3A39%3A51.5768432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/CmkTestSkipWL","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"test","etag":"W/\"datetime''2020-04-05T14%3A34%3A25.8014976Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"vault","etag":"W/\"datetime''2020-12-02T10%3A40%3A36.6401797Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"testZRSValue","etag":"W/\"datetime''2020-06-29T12%3A59%3A36.0904892Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testZRSValue","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"amchandnVault1502A","etag":"W/\"datetime''2020-02-15T10%3A36%3A34.5145915Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/Vaults/amchandnVault1502A","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"standard"}},{"location":"westus","name":"dosvaulttesting","etag":"W/\"datetime''2021-07-08T12%3A15%3A49.4261866Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.RecoveryServices/vaults/dosvaulttesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wusKosinghaVault","etag":"W/\"datetime''2020-09-18T08%3A17%3A22.3508123Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/wusKosinghaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wuskosignhavault1","etag":"W/\"datetime''2020-09-19T20%3A12%3A15.4311806Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/wuskosignhavault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"vaultbug","etag":"W/\"datetime''2020-08-28T04%3A32%3A11.372405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultbug/providers/Microsoft.RecoveryServices/vaults/vaultbug","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wuskosinghaVault2","etag":"W/\"datetime''2020-09-20T05%3A59%3A56.4876842Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"ABCTest","etag":"W/\"datetime''2020-12-03T18%3A49%3A06.1964143Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/ABCTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"rtewfasd","etag":"W/\"datetime''2021-06-04T07%3A02%3A33.0990962Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"31e69461-560a-4b1e-88e8-60613fb23dde","startTimeUtc":"2021-06-04T07:02:08.7584831Z","completionTimeUtc":"2021-06-04T07:02:33.0733902Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarDiskRG/providers/Microsoft.RecoveryServices/vaults/rtewfasd","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"test1","etag":"W/\"datetime''2021-03-10T02%3A50%3A02.9274187Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/test1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestVault","etag":"W/\"datetime''2021-01-28T06%3A36%3A56.1613503Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/TestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVault1","etag":"W/\"datetime''2021-06-09T05%3A06%3A46.501142Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/testVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"XXXTestVault","etag":"W/\"datetime''2020-12-10T06%3A16%3A16.9017184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XXXTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"XYZTestVault","etag":"W/\"datetime''2020-12-10T06%3A14%3A54.0851289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XYZTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"jakavetVault","etag":"W/\"datetime''2021-04-27T11%3A07%3A10.316107Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TesCRRABC","etag":"W/\"datetime''2021-01-08T14%3A38%3A29.5049353Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/TesCRRABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"VMTestvault55","etag":"W/\"datetime''2021-04-26T14%3A13%3A09.5945924Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/VMTestvault55","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaulteus","etag":"W/\"datetime''2021-04-22T07%3A56%3A59.7390353Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/testVaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"bcrg","etag":"W/\"datetime''2020-11-03T09%3A59%3A34.4359315Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"Testgegpolicy","etag":"W/\"datetime''2021-01-08T10%3A16%3A18.3584449Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gegRG/providers/Microsoft.RecoveryServices/vaults/Testgegpolicy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"eusKosinghaIAASVMTest","etag":"W/\"datetime''2020-09-21T05%3A36%3A04.5222564Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"kosinghaCRRTest","etag":"W/\"datetime''2020-09-18T06%3A44%3A46.8154853Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"euskosinghavault1","etag":"W/\"datetime''2020-09-19T18%3A32%3A30.4677948Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/euskosinghavault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"euskosinghaVault2","etag":"W/\"datetime''2020-09-20T05%3A51%3A52.4028499Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestVaultABC","etag":"W/\"datetime''2020-12-09T19%3A27%3A30.4707549Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuTestRG/providers/Microsoft.RecoveryServices/vaults/TestVaultABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"mabcrashjobtesting","etag":"W/\"datetime''2021-05-28T07%3A26%3A01.2951182Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pikumarCrashJob/providers/Microsoft.RecoveryServices/vaults/mabcrashjobtesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault219","etag":"W/\"datetime''2021-03-16T11%3A34%3A23.8319583Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault219","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault854","etag":"W/\"datetime''2021-03-24T06%3A56%3A38.8986105Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault854","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"PublicPreviewVault","etag":"W/\"datetime''2021-02-17T07%3A01%3A36.9926607Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PublicpreviewRG/providers/Microsoft.RecoveryServices/vaults/PublicPreviewVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"ResourceGuardTesting","etag":"W/\"datetime''2021-03-23T18%3A04%3A28.8024601Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/ResourceGuardTesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"deletevault","etag":"W/\"datetime''2021-03-05T06%3A50%3A37.9124769Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-restore-disk-rg/providers/Microsoft.RecoveryServices/vaults/deletevault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"deleteme","etag":"W/\"datetime''2021-03-05T07%3A01%3A38.5572866Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/deleteme","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"My-vault","etag":"W/\"datetime''2021-05-27T05%3A23%3A33.2560575Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","Delete + By":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"My-vault-2","etag":"W/\"datetime''2021-05-29T08%3A26%3A17.2301602Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","DeleteBy":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Mycheckingvault","etag":"W/\"datetime''2021-07-07T06%3A36%3A17.7673145Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","DeleteBy":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/Mycheckingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"TesSumit5-managedrsvault","etag":"W/\"datetime''2021-07-08T05%3A32%3A15.4547043Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sumittestsxxbbdwvakp2q/providers/Microsoft.RecoveryServices/vaults/TesSumit5-managedrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestingCRRLrs","etag":"W/\"datetime''2021-02-10T09%3A44%3A11.0390374Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingCrrLrs/providers/Microsoft.RecoveryServices/vaults/TestingCRRLrs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvault","etag":"W/\"datetime''2020-09-17T08%3A33%3A27.9437854Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvault/providers/Microsoft.RecoveryServices/vaults/testvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault441","etag":"W/\"datetime''2021-04-01T11%3A11%3A45.3835831Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK","etag":"W/\"datetime''2021-07-13T04%3A13%3A20.9000871Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-2","etag":"W/\"datetime''2021-07-04T12%3A05%3A28.925451Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a6c0983b-dbf8-47da-9a49-6a850e67b13b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testdemoMSI":{"clientId":"03aaf883-a93c-4dcb-bcb0-bc88411776c8","objectId":"8df55a03-1a34-41ef-9954-2ba3764422a8"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI"},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-3","etag":"W/\"datetime''2021-07-10T15%3A20%3A30.4873057Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1cbf3e7d-3458-4242-8ebc-02342fc2b1c2","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testdemoMSI":{"clientId":"03aaf883-a93c-4dcb-bcb0-bc88411776c8","objectId":"8df55a03-1a34-41ef-9954-2ba3764422a8"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI"},"infrastructureEncryption":"Enabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-4","etag":"W/\"datetime''2021-07-02T07%3A01%3A00.6360877Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c6bdda6a-8b58-45f0-88a5-0dba6d6cba16","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-5","etag":"W/\"datetime''2021-07-13T04%3A22%3A56.1218447Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-6","etag":"W/\"datetime''2021-06-13T14%3A17%3A51.7202976Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1f8e7e87-9271-489d-add2-1fe100a0c97a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-9","etag":"W/\"datetime''2021-06-24T07%3A04%3A15.1977746Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3ffaa1bc-cbfe-44f6-8998-71c2c383634e","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-9","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"TestMadhuDeVault","etag":"W/\"datetime''2020-11-27T04%3A20%3A41.0648542Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestMadhuDeRG/providers/Microsoft.RecoveryServices/vaults/TestMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"CrrTestJPE","etag":"W/\"datetime''2021-04-30T10%3A51%3A27.7251447Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cffd0fa0-eba5-42b7-8b9d-472ae42839ae","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPE","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japanwest","name":"CrrTestJPW","etag":"W/\"datetime''2020-09-18T09%3A33%3A28.0683144Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPW","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"prnookal-aueast","etag":"W/\"datetime''2021-06-18T06%3A25%3A33.5464384Z''\"","tags":{"Owner":"prnookal","isMABUsed":"Yes","Purpose":"runners"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/prnookal-aueast","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralus","name":"vault171","etag":"W/\"datetime''2020-09-21T07%3A33%3A42.7317982Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"newVault24","etag":"W/\"datetime''2021-06-25T02%3A25%3A38.3011515Z''\"","tags":{"MAB + Used ":"yes","Owner":"jakavet","Purpose":" Testing","DeleteBy":"01-2023"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"vault306","etag":"W/\"datetime''2021-04-01T10%3A48%3A57.8877817Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"vsarg-rsv","etag":"W/\"datetime''2020-03-05T11%3A55%3A28.5108108Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Vsarg-new/providers/Microsoft.RecoveryServices/vaults/vsarg-rsv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MUADemoVault","etag":"W/\"datetime''2021-06-03T11%3A56%3A49.6078373Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/MUADemoVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newMUAVault","etag":"W/\"datetime''2021-07-04T12%3A27%3A41.6648586Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newMUAVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newvault2","etag":"W/\"datetime''2021-06-11T07%3A30%3A43.330465Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault3","etag":"W/\"datetime''2021-06-11T08%3A47%3A56.2104608Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MUADemoVault","etag":"W/\"datetime''2021-06-14T09%3A07%3A39.6651499Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/MUADemoVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"muaVault","etag":"W/\"datetime''2021-05-10T21%3A09%3A25.7480954Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/muaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault","etag":"W/\"datetime''2021-06-11T07%3A10%3A07.4184262Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault4","etag":"W/\"datetime''2021-06-11T09%3A35%3A55.7244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hakavetMUAVault","etag":"W/\"datetime''2021-06-28T07%3A12%3A20.4178367Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/hakavetMUAVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"wcusvault","etag":"W/\"datetime''2021-04-07T07%3A46%3A26.5037181Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/wcusvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MadhuDeMFATestWCUS","etag":"W/\"datetime''2021-06-03T09%3A27%3A35.9807688Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupAdminMadhudeRG/providers/Microsoft.RecoveryServices/vaults/MadhuDeMFATestWCUS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"CrossTenantVault","etag":"W/\"datetime''2021-04-14T08%3A02%3A29.7889034Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrossTenantMadhudeRG/providers/Microsoft.RecoveryServices/vaults/CrossTenantVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"mfamuarsvault","etag":"W/\"datetime''2021-06-22T11%3A28%3A02.6891649Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mfa_mua_rg/providers/Microsoft.RecoveryServices/vaults/mfamuarsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"resourceGuardTesting","etag":"W/\"datetime''2021-06-10T09%3A08%3A00.1657773Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGuardTesting/providers/Microsoft.RecoveryServices/vaults/resourceGuardTesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"UtsMuaVault1","etag":"W/\"datetime''2021-06-03T19%3A29%3A48.8002514Z''\"","tags":{"Owner":"utraghuv","Purpose":"Testing","DeleteBy":"01-2025","MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsMuaMfaRg/providers/Microsoft.RecoveryServices/vaults/UtsMuaVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"WCUSMadhuDeVault","etag":"W/\"datetime''2020-09-17T10%3A43%3A46.5117487Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WCUSMadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WCUSMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"WUS2MadhuDeCrrVault","etag":"W/\"datetime''2020-09-17T10%3A04%3A12.6172664Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"vault493","etag":"W/\"datetime''2021-03-16T16%3A03%3A35.4640808Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"zakVault","etag":"W/\"datetime''2020-05-01T02%3A43%3A54.7891358Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrg/providers/Microsoft.RecoveryServices/vaults/zakVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"SourceVault","etag":"W/\"datetime''2020-10-01T13%3A04%3A51.6707309Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"ukwest","name":"vault762","etag":"W/\"datetime''2021-04-05T13%3A09%3A10.0588403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"koreacentral","name":"vault108","etag":"W/\"datetime''2021-03-25T11%3A21%3A22.9805358Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgKRC-otds-rraj/providers/Microsoft.RecoveryServices/vaults/vault108","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"norwayeast","name":"swtestvault100","etag":"W/\"datetime''2021-06-01T02%3A53%3A31.6381416Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/swtestvault100","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"norwayeast","name":"hiagaCRRvault","etag":"W/\"datetime''2021-06-04T10%3A30%3A32.4823025Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"01-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR/providers/Microsoft.RecoveryServices/vaults/hiagaCRRvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"switzerlandwest","name":"abhinkszw","etag":"W/\"datetime''2021-06-04T14%3A16%3A45.3803344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.RecoveryServices/vaults/abhinkszw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"testvaultccy","etag":"W/\"datetime''2021-02-02T13%3A24%3A34.3514747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"amchandnVault1502B","etag":"W/\"datetime''2020-02-15T10%3A38%3A05.4881405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/Vaults/amchandnVault1502B","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"asmaskar0107","etag":"W/\"datetime''2020-07-01T09%3A36%3A37.6662577Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ad9545cf-bef1-4330-a95d-4161a4ec36e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar0107","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar0203","etag":"W/\"datetime''2020-03-02T13%3A48%3A37.6211821Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"94a4ce31-a0c9-42e4-87ce-1058c727b485","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar0203","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar050315","etag":"W/\"datetime''2020-03-05T12%3A54%3A30.002739Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a5aef76d-640e-4b83-912a-2af95837d1ad","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar050315","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar07051","etag":"W/\"datetime''2021-05-07T09%3A04%3A34.841415Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07051","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar07052","etag":"W/\"datetime''2021-05-07T09%3A05%3A08.123179Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07052","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar123","etag":"W/\"datetime''2020-02-27T10%3A36%3A51.7694444Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d271606f-0849-45ad-9cf0-92bc1bd2c9f2","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar123","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar20073","etag":"W/\"datetime''2020-07-30T06%3A58%3A40.9942587Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9801498f-0579-4265-b7e2-3e90220bd271","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"0dae4f5e-a576-47eb-9f2f-fa52aef67cdb","startTimeUtc":"2019-04-26T00:36:52.8303836Z","completionTimeUtc":"2019-04-26T00:38:51.932462Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RegionalRPResourceGroup + kaneta?????? ABC (xyz)_.,-/providers/Microsoft.RecoveryServices/Vaults/TestMoveResourceAcrossSubscription","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RegionalRPResourceGroup/providers/Microsoft.RecoveryServices/Vaults/TestMoveResourceAcrossSubscription"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar20073","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar23071","etag":"W/\"datetime''2020-07-23T10%3A59%3A11.9419674Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"f83b0ce3-27e5-4a94-9a8f-81076d019faf","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar23071","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"BackupPreviewCCYNewVault3","etag":"W/\"datetime''2021-06-08T13%3A28%3A06.144128Z''\"","tags":{"MAB + Used":"true"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewCCYNewVault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"archiveccyvault1","etag":"W/\"datetime''2021-01-21T19%3A30%3A25.5404992Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault891","etag":"W/\"datetime''2021-03-22T06%3A41%3A46.0158817Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtesting2","etag":"W/\"datetime''2021-06-22T07%3A59%3A43.2135046Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"84acee96-299a-4216-8a1a-a1ec352f2796","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtesting2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy","etag":"W/\"datetime''2021-06-22T07%3A50%3A49.10808Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"398523fb-95a9-4858-9575-a00a77451bee","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy3","etag":"W/\"datetime''2021-06-22T08%3A00%3A01.7446193Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"36c479cd-90b8-4908-8307-1f894a532123","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy4","etag":"W/\"datetime''2021-06-22T08%3A00%3A17.1054926Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2636e10f-2d6f-4417-a38c-e2ebce6c8032","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ResourceGuardMadhuDeVault","etag":"W/\"datetime''2021-03-31T09%3A53%3A07.1759321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupadminTestRG/providers/Microsoft.RecoveryServices/vaults/ResourceGuardMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault549","etag":"W/\"datetime''2020-08-17T14%3A25%3A05.1465764Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault549","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ContosoProdVault","etag":"W/\"datetime''2020-07-14T08%3A21%3A08.2353971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ContosoTestVault","etag":"W/\"datetime''2020-07-14T08%3A26%3A48.6660175Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"kosinghacrrBill","etag":"W/\"datetime''2020-10-13T07%3A42%3A55.8236648Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghacrrBill","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"crrbmsrunnercanaryccy","etag":"W/\"datetime''2021-01-21T17%3A52%3A52.2304449Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrbmsrunnercanarywestus/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"dchandrPostGress","etag":"W/\"datetime''2020-08-24T07%3A21%3A07.6338945Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.RecoveryServices/vaults/dchandrPostGress","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"abc","etag":"W/\"datetime''2021-03-15T12%3A58%3A35.2630766Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.RecoveryServices/vaults/abc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"abc","etag":"W/\"datetime''2021-03-15T12%3A59%3A09.1241989Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupRestore/providers/Microsoft.RecoveryServices/vaults/abc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"CRRTestSourceVault","etag":"W/\"datetime''2020-08-21T13%3A22%3A31.7450918Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/CRRTestSourceVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MercuryCrrVault","etag":"W/\"datetime''2020-07-14T11%3A44%3A50.2881311Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"harjairunnervault2","etag":"W/\"datetime''2020-11-25T08%3A07%3A28.9196414Z''\"","tags":{"MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"IaasvmDrillVault","etag":"W/\"datetime''2020-12-18T16%3A43%3A04.6430891Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault405","etag":"W/\"datetime''2021-03-09T12%3A45%3A13.7808663Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ld-kosingha-ccy-vault","etag":"W/\"datetime''2021-02-22T12%3A44%3A17.5376672Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cfacfae2-f372-432b-a489-2ec65f4112db","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault139","etag":"W/\"datetime''2021-04-05T10%3A42%3A09.8621756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MFATest","etag":"W/\"datetime''2020-09-01T11%3A28%3A26.5516544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/MFATest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"TestVaultABC","etag":"W/\"datetime''2020-12-14T17%3A25%3A26.9496069Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/TestVaultABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MadhuDeResourceGuardTest","etag":"W/\"datetime''2021-03-30T15%3A00%3A16.8364847Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/MadhuDeResourceGuardTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"NewVaultForResourceMove","etag":"W/\"datetime''2020-09-07T13%3A00%3A37.7524862Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"9feb1800-9b9c-4747-9b7b-7db7f1d58675","startTimeUtc":"2020-09-07T13:00:15.0401715Z","completionTimeUtc":"2020-09-07T13:00:41.2641365Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"dsmove-bvt-t1","etag":"W/\"datetime''2021-06-04T05%3A09%3A01.7073668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-t1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"dsmove-bvt-test-vault4","etag":"W/\"datetime''2021-05-25T07%3A01%3A53.8538753Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MonjainCcyCrrVault","etag":"W/\"datetime''2020-12-21T08%3A23%3A38.931841Z''\"","tags":{"MAB + Used":"True","Owner":"monjain","DeleteBy":"12-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"muaVault","etag":"W/\"datetime''2021-04-05T12%3A01%3A50.9911114Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muaRG/providers/Microsoft.RecoveryServices/vaults/muaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MUAtesting123","etag":"W/\"datetime''2021-06-22T04%3A44%3A10.7204483Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MUAtestRG/providers/Microsoft.RecoveryServices/vaults/MUAtesting123","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault204","etag":"W/\"datetime''2021-03-16T14%3A40%3A16.2603455Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newonerg/providers/Microsoft.RecoveryServices/vaults/vault204","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"crrbmsrunnercanaryccy","etag":"W/\"datetime''2021-01-21T13%3A05%3A57.9244523Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"CRRTest","etag":"W/\"datetime''2021-01-08T12%3A42%3A51.309726Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/CRRTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"VMPeTest","etag":"W/\"datetime''2020-09-30T13%3A00%3A40.0031654Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3fc3467b-d22a-4d70-8aee-f63d50ba2c3a","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/privateEndpointConnections/pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70","name":"pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70","type":"Microsoft.RecoveryServices/vaults/privateEndpointConnections","location":"centraluseuap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/privateEndpointConnections/pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70"},"privateLinkServiceConnectionState":{"status":"Approved","description":"None","actionsRequired":"None"}}}],"privateEndpointStateForBackup":"Enabled","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"prodVault1307A","etag":"W/\"datetime''2020-07-14T07%3A34%3A17.1481792Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/prodVault1307A","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"testVault1307A","etag":"W/\"datetime''2020-07-14T07%3A36%3A58.4966609Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/testVault1307A","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault821","etag":"W/\"datetime''2021-03-24T18%3A19%3A38.5442205Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault821","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault909","etag":"W/\"datetime''2021-03-26T09%3A09%3A14.6486388Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/vault909","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"surraiccycmkvault1","etag":"W/\"datetime''2021-01-16T11%3A35%3A15.5860607Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surrai-cmk-test-ccy/providers/Microsoft.RecoveryServices/vaults/surraiccycmkvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"surraiccytestvault","etag":"W/\"datetime''2020-12-15T09%3A55%3A34.0240199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"TestLRSVault","etag":"W/\"datetime''2020-12-14T17%3A33%3A44.5567874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestRG/providers/Microsoft.RecoveryServices/vaults/TestLRSVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"TestCmkWLSkip1","etag":"W/\"datetime''2020-05-21T14%3A42%3A27.5065207Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"abc","etag":"W/\"datetime''2020-09-07T14%3A47%3A44.3183485Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"dee7a28a-3f3c-4077-9222-9b810424eb47","startTimeUtc":"2020-09-07T14:47:17.5453479Z","completionTimeUtc":"2020-09-07T14:47:44.2228308Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/abc","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adigupt-new","etag":"W/\"datetime''2021-06-15T10%3A02%3A05.3557572Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/adigupt-new","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dhdjd","etag":"W/\"datetime''2021-06-15T10%3A04%3A36.511016Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/dhdjd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"newOne","etag":"W/\"datetime''2021-07-08T09%3A30%3A07.1235718Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newOne","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"abhinkVault","etag":"W/\"datetime''2020-06-05T06%3A34%3A59.1257744Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/abhinkVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"asmaskar07053","etag":"W/\"datetime''2021-05-07T09%3A06%3A04.912976Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07053","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"asmaskar25051","etag":"W/\"datetime''2021-05-25T09%3A52%3A34.3433191Z''\"","tags":{"name":"standard"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8bbd7383-05a4-40c6-8ae6-b159ae5eb94c","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar25051","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"BackupPreviewECYNewVault","etag":"W/\"datetime''2020-03-27T10%3A30%3A25.6287261Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"bcrgVault","etag":"W/\"datetime''2020-11-03T17%3A18%3A56.5731317Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrgVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adkayeth-afs-bckp","etag":"W/\"datetime''2020-10-20T08%3A01%3A41.9676647Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adkayeth-afs-test","etag":"W/\"datetime''2020-12-11T13%3A50%3A29.708873Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault945","etag":"W/\"datetime''2020-08-17T14%3A25%3A43.5185782Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault945","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"kosinghaBillTest2","etag":"W/\"datetime''2020-10-13T13%3A37%3A46.5637089Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ECYDrill","etag":"W/\"datetime''2019-12-05T07%3A15%3A29.0806564Z''\"","tags":{"MAB + Used":"Yes","Owner":"NirajK;SriramSa","Purpose":"WorkloadBackup-Production-SwaggerTestAutomation"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ECYDrill","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault269","etag":"W/\"datetime''2021-04-05T02%3A53%3A17.6745557Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault269","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault445","etag":"W/\"datetime''2021-04-01T10%3A54%3A03.5918765Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault445","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"WorkloadAzDrillZRS","etag":"W/\"datetime''2021-07-13T07%3A37%3A51.7111819Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/WorkloadAzDrillZRS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZrsVault","etag":"W/\"datetime''2021-07-13T06%3A35%3A38.7517541Z''\"","tags":{"owner":"agarwala","Purpose":"ZonedDownDrillValidation"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gesahootest","etag":"W/\"datetime''2021-03-24T15%3A02%3A32.32287Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"harjairunnervault","etag":"W/\"datetime''2020-11-25T07%3A56%3A42.7302082Z''\"","tags":{"MABUsed":"Yes","isMABUsed":"True"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"KosinghaECYbillTestingVault","etag":"W/\"datetime''2020-10-13T12%3A12%3A24.5007851Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ld-kosingha-ecy-vault","etag":"W/\"datetime''2020-11-10T19%3A15%3A23.0544636Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ECYResourceMove","etag":"W/\"datetime''2020-09-07T13%3A33%3A30.191312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/ECYResourceMove","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"CRRTestTargetVault","etag":"W/\"datetime''2020-08-21T13%3A25%3A40.5894518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/CRRTestTargetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"MadhuDeTestVM","etag":"W/\"datetime''2020-12-14T17%3A41%3A21.4302044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.RecoveryServices/vaults/MadhuDeTestVM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-apitest-s1","etag":"W/\"datetime''2021-06-11T09%3A37%3A55.6238725Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/Vaults/dsmove-bvt-apitest-s1","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"eastus2euap","name":"dsmove-bvt-s1","etag":"W/\"datetime''2021-06-11T09%3A36%3A39.760365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-s1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-s10","etag":"W/\"datetime''2021-06-16T12%3A54%3A53.7114477Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-s10","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault1","etag":"W/\"datetime''2021-05-18T13%3A08%3A58.2261383Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault2","etag":"W/\"datetime''2021-05-25T06%3A25%3A33.7205872Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault3","etag":"W/\"datetime''2021-05-25T07%3A00%3A18.8457965Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-vault5","etag":"W/\"datetime''2021-06-04T02%3A48%3A50.0887106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-vault5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"AutoUpdateTestMARS","etag":"W/\"datetime''2021-05-21T10%3A47%3A06.1117132Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/AutoUpdateTestMARS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraicmkecyvault1","etag":"W/\"datetime''2021-01-19T12%3A24%3A38.4533018Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c97ac6b7-fe57-4f3e-8b56-3e9d9605690f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecycmkvault3011","etag":"W/\"datetime''2021-03-01T14%3A50%3A08.6573876Z''\"","tags":{"Owner":"surrai","DeleteBy":"03-2022","Purpose":"Testing","AutoShutdown":"No","MAB + Used":"Yes"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1ae4fa42-1608-4993-8caf-6c3c59d5b0c6","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecypevault","etag":"W/\"datetime''2021-02-11T16%3A01%3A47.5113239Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"eee97ec2-b109-46cc-9502-ff959111852f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/privateEndpointConnections/surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be","name":"surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be","type":"Microsoft.RecoveryServices/vaults/privateEndpointConnections","location":"eastus2euap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/privateEndpointConnections/surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be"},"privateLinkServiceConnectionState":{"status":"Approved","description":"None","actionsRequired":"None"}}}],"privateEndpointStateForBackup":"Enabled","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecytestvault2","etag":"W/\"datetime''2021-02-22T13%3A02%3A15.9960406Z''\"","tags":{"MAB + Used":"Yes","MABUsed":"Yes"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ab39e437-680b-4905-bdce-4655ac7967e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault940","etag":"W/\"datetime''2021-04-01T10%3A48%3A34.0615736Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrgnew/providers/Microsoft.RecoveryServices/vaults/vault940","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"arvindtestvault","etag":"W/\"datetime''2020-07-09T23%3A38%3A38.0140589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"arvindzrstest2","etag":"W/\"datetime''2020-07-09T23%3A57%3A58.0530635Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindzrstest2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"suresht-zrstest","etag":"W/\"datetime''2020-07-09T23%3A49%3A27.1859757Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VihariPZRSBugBash","etag":"W/\"datetime''2020-07-09T23%3A40%3A04.2077741Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZRSTesingCV","etag":"W/\"datetime''2020-07-09T23%3A43%3A53.7557807Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZZrsVault","etag":"W/\"datetime''2021-06-29T06%3A50%3A31.265465Z''\"","identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"mayaggarrmvault","etag":"W/\"datetime''2021-07-12T07%3A59%3A01.4892403Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"81b6eded-125e-4723-8cd3-f8890cffdbb0","startTimeUtc":"2021-07-12T07:58:37.5000192Z","completionTimeUtc":"2021-07-12T07:59:01.4393009Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggar/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-vault","etag":"W/\"datetime''2021-06-14T19%3A11%3A59.0204753Z''\"","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-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-vault2","etag":"W/\"datetime''2021-06-15T04%3A40%3A50.4746212Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"asmitttestvault","etag":"W/\"datetime''2021-03-30T11%3A33%3A40.9457075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmitttest/providers/Microsoft.RecoveryServices/vaults/asmitttestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vault6ilaqmfbtio","etag":"W/\"datetime''2021-06-17T06%3A29%3A14.1870516Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2axfrllddcexsd7lf5jt2kizmwln26tved5xpd3yjdmvw37lssrbffyzev42zfgop/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ilaqmfbtio","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultciyzoepyvcc","etag":"W/\"datetime''2021-07-13T08%3A01%3A08.3863453Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk5pb5p7jqch","etag":"W/\"datetime''2021-07-13T08%3A04%3A14.4667487Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk5pb5p7jqch","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultr3yegpfmnyy","etag":"W/\"datetime''2021-06-17T06%3A34%3A06.3089024Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault66svycrqakh","etag":"W/\"datetime''2021-06-21T06%3A20%3A01.1602578Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultviltn3z3hdn","etag":"W/\"datetime''2021-06-17T06%3A29%3A13.6315248Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdpjnygfyazfuwkslmu5qsjniz7pe7hpn7gw5c2sdejk37okvpcjt25mlmigjr4ruz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultviltn3z3hdn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T08%3A53%3A22.6566167Z''\"","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-vault7vgbsde3rvo","etag":"W/\"datetime''2021-07-13T08%3A05%3A57.7579639Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.RecoveryServices/vaults/clitest-vault7vgbsde3rvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu2sa3i6fren","etag":"W/\"datetime''2021-07-13T08%3A07%3A35.9303081Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtmrta7e2n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu2sa3i6fren","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxvz7kzd22fq","etag":"W/\"datetime''2021-06-18T08%3A02%3A23.1712616Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo5jjxrimsllok4xd7vkruddg7h2yvde7elfc5l4ee7fz6wm6jievftxow7tsa2lej/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxvz7kzd22fq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7oaiaxnd3uq","etag":"W/\"datetime''2021-07-13T08%3A33%3A45.980739Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4uqtshko5om","etag":"W/\"datetime''2021-06-17T06%3A29%3A13.724613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpuiuax7tzaks7rbrwy3cmj4mni6f6oovxhj2cyaoz5vwpfjngzt7jzcemguuezeix/providers/Microsoft.RecoveryServices/vaults/clitest-vault4uqtshko5om","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt5rhogebbou","etag":"W/\"datetime''2021-07-13T08%3A01%3A07.9449249Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3uww3nsnehj","etag":"W/\"datetime''2021-06-15T05%3A59%3A50.4912309Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtb6fpqzldd/providers/Microsoft.RecoveryServices/vaults/clitest-vault3uww3nsnehj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaults5zqycuhpfa","etag":"W/\"datetime''2021-06-17T06%3A33%3A55.780926Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwurxwm3wip3","etag":"W/\"datetime''2021-06-18T06%3A28%3A05.638515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw334cvoozs2gpptqdii6smyw4i2kkx3wz6gt2onxu6pddwpdkky5py7nhgu4tl4ud/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwurxwm3wip3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcufv3xkmajq","etag":"W/\"datetime''2021-06-17T07%3A56%3A20.3139079Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgykrgkyzkxgcik32u5sbwsjy4ttyfd5gcpqotrtrdskgd3hwukphzxjxgulnl6mkdu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcufv3xkmajq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh4sgz3r4ht","etag":"W/\"datetime''2021-06-18T09%3A37%3A35.4844417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymouom2j5x4w5rdeaywgsdw7pbfwpqpgphgxoa6lht6ofz46r547txy6vkjtuorvm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh4sgz3r4ht","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4stgkxrddm","etag":"W/\"datetime''2021-06-17T07%3A56%3A30.3484167Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz74trrkv7ejfvfrng7ob4kno75fopjy4jzqfn6qj5p5bfjza5bcnomao4yqmpmj7u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4stgkxrddm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3mqxpoklqcy","etag":"W/\"datetime''2021-06-17T06%3A29%3A14.0569283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"vault947","etag":"W/\"datetime''2021-06-11T12%3A26%3A45.9361833Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"test-v1","etag":"W/\"datetime''2021-04-26T11%3A30%3A37.3698706Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/test-v1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"sakaarcsstest","etag":"W/\"datetime''2020-04-01T05%3A59%3A09.528941Z''\"","tags":{"MAB + Used":"yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarcsstest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"sakaarhotfixtest","etag":"W/\"datetime''2020-07-25T08%3A40%3A30.109341Z''\"","tags":{"MAB + Used":"Yes","isMABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarhotfixtest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault735","etag":"W/\"datetime''2021-03-15T17%3A25%3A28.7727957Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedensouth","name":"mabcms","etag":"W/\"datetime''2021-06-03T06%3A44%3A16.0084984Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcms","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedensouth","name":"newRegionVal","etag":"W/\"datetime''2021-06-02T05%3A01%3A19.6255744Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/newRegionVal","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedencentral","name":"mabcmtesting","etag":"W/\"datetime''2021-06-03T06%3A36%3A44.1678523Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcmtesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '43929' + - '113633' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:02:53 GMT + - Tue, 13 Jul 2021 08:55:38 GMT expires: - '-1' pragma: @@ -903,18 +988,26 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e - - eb4d64b8-4d77-4e0a-a2e4-1505931a036e + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 + - 7ff21a74-712e-4499-8c9f-b7e690524b09 status: code: 200 message: OK @@ -932,12 +1025,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/adds/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -949,7 +1042,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:02:55 GMT + - Tue, 13 Jul 2021 08:55:39 GMT expires: - '-1' pragma: @@ -965,7 +1058,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -985,25 +1078,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/CmkTestSkipWL/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"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":"Completed","lastBackupTime":"2021-06-21T03:06:48.6251308Z","protectedItemDataId":"263883848880839","extendedProperties":{"linuxVmApplicationName":""},"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-06-21T03:07:09.2939657Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1815' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:02:57 GMT + - Tue, 13 Jul 2021 08:55:41 GMT expires: - '-1' pragma: @@ -1019,7 +1111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: @@ -1039,12 +1131,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/test/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1056,7 +1148,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:02:58 GMT + - Tue, 13 Jul 2021 08:55:43 GMT expires: - '-1' pragma: @@ -1072,7 +1164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '137' x-powered-by: - ASP.NET status: @@ -1092,12 +1184,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1109,7 +1201,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:00 GMT + - Tue, 13 Jul 2021 08:55:45 GMT expires: - '-1' pragma: @@ -1125,7 +1217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: @@ -1145,12 +1237,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testZRSValue/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1162,7 +1254,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:02 GMT + - Tue, 13 Jul 2021 08:55:45 GMT expires: - '-1' pragma: @@ -1178,7 +1270,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '129' x-powered-by: - ASP.NET status: @@ -1198,12 +1290,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502A/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1215,7 +1307,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:03 GMT + - Tue, 13 Jul 2021 08:55:47 GMT expires: - '-1' pragma: @@ -1231,7 +1323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '133' x-powered-by: - ASP.NET status: @@ -1251,12 +1343,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.RecoveryServices/vaults/dosvaulttesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1268,7 +1360,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:05 GMT + - Tue, 13 Jul 2021 08:55:48 GMT expires: - '-1' pragma: @@ -1284,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: @@ -1304,12 +1396,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/wusKosinghaVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1321,7 +1413,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:06 GMT + - Tue, 13 Jul 2021 08:55:49 GMT expires: - '-1' pragma: @@ -1337,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '137' x-powered-by: - ASP.NET status: @@ -1357,25 +1449,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/wuskosignhavault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiaga-rg;hiaga-vm/protectedItems/VM;iaasvmcontainerv2;hiaga-rg;hiaga-vm","name":"VM;iaasvmcontainerv2;hiaga-rg;hiaga-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"hiaga-VM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Compute/virtualMachines/hiaga-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":"2021-06-20T22:02:27.2703247Z","protectedItemDataId":"123146101070871","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiaga-rg;hiaga-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Compute/virtualMachines/hiaga-VM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T22:02:36.7773472Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1821' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:07 GMT + - Tue, 13 Jul 2021 08:55:50 GMT expires: - '-1' pragma: @@ -1391,7 +1482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '134' x-powered-by: - ASP.NET status: @@ -1411,12 +1502,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultbug/providers/Microsoft.RecoveryServices/vaults/vaultbug/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1428,7 +1519,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:09 GMT + - Tue, 13 Jul 2021 08:55:51 GMT expires: - '-1' pragma: @@ -1444,7 +1535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -1464,24 +1555,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupProtectedItems?api-version=2021-01-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/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;wusvmrg;wuskosinghavm3/protectedItems/VM;iaasvmcontainerv2;wusvmrg;wuskosinghavm3","name":"VM;iaasvmcontainerv2;wusvmrg;wuskosinghavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"wuskosinghavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wusvmrg/providers/Microsoft.Compute/virtualMachines/wuskosinghavm3","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-07-12T15:32:58.1612735Z","protectedItemDataId":"281475983252120","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;wusvmrg;wuskosinghavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wusvmrg/providers/Microsoft.Compute/virtualMachines/wuskosinghavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:33:01.2601013Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1872' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:09 GMT + - Tue, 13 Jul 2021 08:55:53 GMT expires: - '-1' pragma: @@ -1497,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '131' x-powered-by: - ASP.NET status: @@ -1517,12 +1609,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ea/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/ABCTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1534,7 +1626,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:10 GMT + - Tue, 13 Jul 2021 08:55:55 GMT expires: - '-1' pragma: @@ -1550,7 +1642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '138' x-powered-by: - ASP.NET status: @@ -1570,12 +1662,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1587,7 +1679,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:10 GMT + - Tue, 13 Jul 2021 08:55:57 GMT expires: - '-1' pragma: @@ -1603,7 +1695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '136' x-powered-by: - ASP.NET status: @@ -1623,12 +1715,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/test1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1640,7 +1732,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:10 GMT + - Tue, 13 Jul 2021 08:55:58 GMT expires: - '-1' pragma: @@ -1656,7 +1748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -1676,12 +1768,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/TestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1693,7 +1785,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:11 GMT + - Tue, 13 Jul 2021 08:55:59 GMT expires: - '-1' pragma: @@ -1709,7 +1801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '131' x-powered-by: - ASP.NET status: @@ -1729,12 +1821,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testVMgeesahoo_group/providers/Microsoft.RecoveryServices/vaults/geettest1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/testVault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1746,7 +1838,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:12 GMT + - Tue, 13 Jul 2021 08:56:00 GMT expires: - '-1' pragma: @@ -1762,7 +1854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -1782,12 +1874,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XXXTestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1799,7 +1891,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:14 GMT + - Tue, 13 Jul 2021 08:56:01 GMT expires: - '-1' pragma: @@ -1815,7 +1907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -1835,12 +1927,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XYZTestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1852,7 +1944,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:16 GMT + - Tue, 13 Jul 2021 08:56:03 GMT expires: - '-1' pragma: @@ -1868,7 +1960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -1888,24 +1980,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoonew1;testgesahoo3/protectedItems/VM;iaasvmcontainerv2;gesahoonew1;testgesahoo3","name":"VM;iaasvmcontainerv2;gesahoonew1;testgesahoo3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgesahoo3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoonew1/providers/Microsoft.Compute/virtualMachines/testgesahoo3","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"193514824632610","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoonew1;testgesahoo3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoonew1/providers/Microsoft.Compute/virtualMachines/testgesahoo3","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1259' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:17 GMT + - Tue, 13 Jul 2021 08:56:05 GMT expires: - '-1' pragma: @@ -1921,7 +2013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '132' x-powered-by: - ASP.NET status: @@ -1941,12 +2033,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/TesCRRABC/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1958,7 +2050,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:20 GMT + - Tue, 13 Jul 2021 08:56:06 GMT expires: - '-1' pragma: @@ -1974,7 +2066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '135' x-powered-by: - ASP.NET status: @@ -1994,12 +2086,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/VMTestvault55/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2011,7 +2103,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:21 GMT + - Tue, 13 Jul 2021 08:56:07 GMT expires: - '-1' pragma: @@ -2027,7 +2119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -2047,12 +2139,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/testVaulteus/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2064,7 +2156,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:22 GMT + - Tue, 13 Jul 2021 08:56:09 GMT expires: - '-1' pragma: @@ -2080,7 +2172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -2100,25 +2192,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrg/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-vm-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-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-06-21T03:32:33.1263263Z","protectedItemDataId":"119104222","extendedProperties":{"linuxVmApplicationName":""},"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-06-21T03:32:36.6431203Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1844' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:23 GMT + - Tue, 13 Jul 2021 08:56:09 GMT expires: - '-1' pragma: @@ -2134,7 +2225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '135' x-powered-by: - ASP.NET status: @@ -2154,24 +2245,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gegRG/providers/Microsoft.RecoveryServices/vaults/Testgegpolicy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1/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":{},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","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/hiagaSrcRG1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1435' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:23 GMT + - Tue, 13 Jul 2021 08:56:10 GMT expires: - '-1' pragma: @@ -2187,7 +2278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '134' x-powered-by: - ASP.NET status: @@ -2207,28 +2298,27 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"ProtectionError","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","name":"VM;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"euskosinghaTestVm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/euskosinghaTestVm2","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-07-12T15:41:24.8891272Z","protectedItemDataId":"932509007082163525","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/euskosinghaTestVm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:41:27.9792242Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","name":"VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaCRRTestVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaCRRTestVM1","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-07-12T15:41:25.9404342Z","protectedItemDataId":"932509006937819503","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaCRRTestVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:41:29.2136367Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting/protectedItems/VM;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","name":"VM;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaIaasVMTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghIAASTest/providers/Microsoft.Compute/virtualMachines/kosinghaIaasVMTesting","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-07-12T15:44:23.1445331Z","protectedItemDataId":"932509006629252539","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghIAASTest/providers/Microsoft.Compute/virtualMachines/kosinghaIaasVMTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:44:25.9645904Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1989' + - '5891' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:24 GMT + - Tue, 13 Jul 2021 08:56:10 GMT expires: - '-1' pragma: @@ -2244,7 +2334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -2264,24 +2354,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2/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":{},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","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/hiagaSrcVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","name":"VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM","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-07-12T16:38:54.6225031Z","protectedItemDataId":"932350676750930735","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:38:57.762188Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1441' + - '1933' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:26 GMT + - Tue, 13 Jul 2021 08:56:11 GMT expires: - '-1' pragma: @@ -2297,7 +2388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '134' x-powered-by: - ASP.NET status: @@ -2317,28 +2408,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/euskosinghavault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2048' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:27 GMT + - Tue, 13 Jul 2021 08:56:13 GMT expires: - '-1' pragma: @@ -2354,7 +2441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '140' x-powered-by: - ASP.NET status: @@ -2374,25 +2461,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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-06-20T21:34:33.8121497Z","protectedItemDataId":"70370838940336","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T21:34:37.6664163Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2/protectedItems/VM;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","name":"VM;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaTestVM2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTestVMRG/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM2","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-07-12T15:36:49.6821171Z","protectedItemDataId":"932262716479331247","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTestVMRG/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:36:52.80637Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1893' + - '1967' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:28 GMT + - Tue, 13 Jul 2021 08:56:15 GMT expires: - '-1' pragma: @@ -2408,7 +2495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '136' x-powered-by: - ASP.NET status: @@ -2428,25 +2515,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuTestRG/providers/Microsoft.RecoveryServices/vaults/TestVaultABC/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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-06-20T21:02:04.6500629Z","protectedItemDataId":"140739447045620","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T21:02:23.9943354Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1894' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:28 GMT + - Tue, 13 Jul 2021 08:56:15 GMT expires: - '-1' pragma: @@ -2462,7 +2548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '130' x-powered-by: - ASP.NET status: @@ -2482,12 +2568,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pikumarCrashJob/providers/Microsoft.RecoveryServices/vaults/mabcrashjobtesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2499,7 +2585,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:29 GMT + - Tue, 13 Jul 2021 08:56:17 GMT expires: - '-1' pragma: @@ -2515,7 +2601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '132' x-powered-by: - ASP.NET status: @@ -2535,12 +2621,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault219/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2552,7 +2638,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:32 GMT + - Tue, 13 Jul 2021 08:56:19 GMT expires: - '-1' pragma: @@ -2568,7 +2654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -2588,28 +2674,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault854/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"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":"akkanaseLRSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-28T17:06:57.5973259Z","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":"","policyName":"","lastRecoveryPoint":"2021-01-27T17:08:20.4949135Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1906' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:33 GMT + - Tue, 13 Jul 2021 08:56:20 GMT expires: - '-1' pragma: @@ -2625,7 +2707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '128' x-powered-by: - ASP.NET status: @@ -2645,25 +2727,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PublicpreviewRG/providers/Microsoft.RecoveryServices/vaults/PublicPreviewVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-hana-vm-new","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T15:36:15.3609965Z","protectedItemDataId":"52777015471742","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T15:36:20.7252609Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1884' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:35 GMT + - Tue, 13 Jul 2021 08:56:21 GMT expires: - '-1' pragma: @@ -2679,7 +2760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '131' x-powered-by: - ASP.NET status: @@ -2699,12 +2780,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/ResourceGuardTesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2716,7 +2797,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:37 GMT + - Tue, 13 Jul 2021 08:56:20 GMT expires: - '-1' pragma: @@ -2732,7 +2813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '130' x-powered-by: - ASP.NET status: @@ -2752,27 +2833,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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-restore-disk-rg/providers/Microsoft.RecoveryServices/vaults/deletevault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3/protectedItems/VM;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","name":"VM;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400309,"title":"UserErrorGenericResourceNotFound","message":"Azure - resource does not exist.","recommendations":["Please make sure required resources - exist. If the issue persists, contact Microsoft support."]}]}},"friendlyName":"asebvtseavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","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-06-13T15:39:53.5244286Z","protectedItemDataId":"244770560","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T15:33:18.6895822Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2014' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:38 GMT + - Tue, 13 Jul 2021 08:56:21 GMT expires: - '-1' pragma: @@ -2788,7 +2866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '132' x-powered-by: - ASP.NET status: @@ -2808,12 +2886,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/deleteme/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2825,7 +2903,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:39 GMT + - Tue, 13 Jul 2021 08:56:22 GMT expires: - '-1' pragma: @@ -2841,7 +2919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -2861,24 +2939,26 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupProtectedItems?api-version=2021-01-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/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shjoshi;my-vm/protectedItems/VM;iaasvmcontainerv2;shjoshi;my-vm","name":"VM;iaasvmcontainerv2;shjoshi;my-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"My-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/My-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":"2021-07-12T19:43:58.0393634Z","protectedItemDataId":"974177814","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shjoshi;my-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/My-vm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupPolicies/My-policy","policyName":"My-policy","lastRecoveryPoint":"2021-07-12T19:44:02.0523008Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shjoshi;shreyansh-machine/protectedItems/VM;iaasvmcontainerv2;shjoshi;shreyansh-machine","name":"VM;iaasvmcontainerv2;shjoshi;shreyansh-machine","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"Shreyansh-machine","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/Shreyansh-machine","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-07-12T15:08:06.8425749Z","protectedItemDataId":"1541352777","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shjoshi;shreyansh-machine","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/Shreyansh-machine","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:08:10.0011378Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3592' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:39 GMT + - Tue, 13 Jul 2021 08:56:23 GMT expires: - '-1' pragma: @@ -2894,7 +2974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '133' x-powered-by: - ASP.NET status: @@ -2914,36 +2994,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault-2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","name":"VM;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","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":"sdkosdisk3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdkosdisk3","protectionStatus":"Unhealthy","protectionState":"IRPending","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":"2021-03-31T14:55:17.8794396Z","protectedItemDataId":"2079402183","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdkosdisk3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;sdktest2/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;sdktest2","name":"VM;iaasvmcontainerv2;akkanasesdktesting;sdktest2","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":"sdktest2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdktest2","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","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":"2021-03-31T14:55:40.7956559Z","protectedItemDataId":"1650168206","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;sdktest2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdktest2","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '4149' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:40 GMT + - Tue, 13 Jul 2021 08:56:23 GMT expires: - '-1' pragma: @@ -2959,7 +3027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -2979,12 +3047,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-cli-test-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/Mycheckingvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -2996,7 +3064,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:41 GMT + - Tue, 13 Jul 2021 08:56:23 GMT expires: - '-1' pragma: @@ -3012,7 +3080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '136' x-powered-by: - ASP.NET status: @@ -3032,12 +3100,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sumittestsxxbbdwvakp2q/providers/Microsoft.RecoveryServices/vaults/TesSumit5-managedrsvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3049,7 +3117,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:41 GMT + - Tue, 13 Jul 2021 08:56:25 GMT expires: - '-1' pragma: @@ -3065,7 +3133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '132' x-powered-by: - ASP.NET status: @@ -3085,12 +3153,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-crr/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingCrrLrs/providers/Microsoft.RecoveryServices/vaults/TestingCRRLrs/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3102,7 +3170,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:42 GMT + - Tue, 13 Jul 2021 08:56:25 GMT expires: - '-1' pragma: @@ -3118,7 +3186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '134' x-powered-by: - ASP.NET status: @@ -3138,12 +3206,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvault/providers/Microsoft.RecoveryServices/vaults/testvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3155,7 +3223,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:42 GMT + - Tue, 13 Jul 2021 08:56:26 GMT expires: - '-1' pragma: @@ -3171,7 +3239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '135' x-powered-by: - ASP.NET status: @@ -3191,24 +3259,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupProtectedItems?api-version=2021-01-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/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;TLSTEST;TLSTest/protectedItems/VM;iaasvmcontainerv2;TLSTEST;TLSTest","name":"VM;iaasvmcontainerv2;TLSTEST;TLSTest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"TLSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.Compute/virtualMachines/TLSTest","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-07-12T19:35:39.6258294Z","protectedItemDataId":"281475504455340","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;TLSTEST;TLSTest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.Compute/virtualMachines/TLSTest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupPolicies/DailyPolicy-kmys2f5l","policyName":"DailyPolicy-kmys2f5l","lastRecoveryPoint":"2021-07-12T19:35:42.2531Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1767' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:43 GMT + - Tue, 13 Jul 2021 08:56:26 GMT expires: - '-1' pragma: @@ -3224,7 +3293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '135' x-powered-by: - ASP.NET status: @@ -3244,24 +3313,26 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupProtectedItems?api-version=2021-01-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/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-2/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-2","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-2","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":"2021-06-09T17:10:17.6736223Z","protectedItemDataId":"1949919164","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-2","policyId":"","policyName":"","lastRecoveryPoint":"2021-06-09T17:10:20.9495072Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK","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-07-12T17:07:05.7468853Z","protectedItemDataId":"1468227706","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T17:08:18.7398351Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3421' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:43 GMT + - Tue, 13 Jul 2021 08:56:27 GMT expires: - '-1' pragma: @@ -3277,7 +3348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: @@ -3297,24 +3368,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupProtectedItems?api-version=2021-01-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/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-3/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-3","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-3","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-07-12T20:36:00.6898743Z","protectedItemDataId":"932966404226959648","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:36:03.8178063Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1817' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:44 GMT + - Tue, 13 Jul 2021 08:56:27 GMT expires: - '-1' pragma: @@ -3330,7 +3402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '130' x-powered-by: - ASP.NET status: @@ -3350,24 +3422,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupProtectedItems?api-version=2021-01-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/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-4/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-4","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-4","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-4","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-07-12T14:36:09.894337Z","protectedItemDataId":"80838424","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T14:36:13.7587562Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1806' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:44 GMT + - Tue, 13 Jul 2021 08:56:28 GMT expires: - '-1' pragma: @@ -3383,7 +3456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '135' x-powered-by: - ASP.NET status: @@ -3403,24 +3476,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupProtectedItems?api-version=2021-01-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/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-5/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-5","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-5","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-5","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-07-12T18:09:28.8632353Z","protectedItemDataId":"933107141561712724","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-5","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-5","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T18:09:32.1188927Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1817' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:45 GMT + - Tue, 13 Jul 2021 08:56:30 GMT expires: - '-1' pragma: @@ -3436,7 +3510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -3456,12 +3530,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-5/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3473,7 +3547,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:45 GMT + - Tue, 13 Jul 2021 08:56:31 GMT expires: - '-1' pragma: @@ -3489,7 +3563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '127' x-powered-by: - ASP.NET status: @@ -3509,12 +3583,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-6/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3526,7 +3600,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:46 GMT + - Tue, 13 Jul 2021 08:56:31 GMT expires: - '-1' pragma: @@ -3542,7 +3616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '129' x-powered-by: - ASP.NET status: @@ -3562,12 +3636,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault42/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-9/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3579,7 +3653,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:46 GMT + - Tue, 13 Jul 2021 08:56:31 GMT expires: - '-1' pragma: @@ -3595,7 +3669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '133' x-powered-by: - ASP.NET status: @@ -3615,12 +3689,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestMadhuDeRG/providers/Microsoft.RecoveryServices/vaults/TestMadhuDeVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3632,7 +3706,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:46 GMT + - Tue, 13 Jul 2021 08:56:32 GMT expires: - '-1' pragma: @@ -3648,7 +3722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '132' x-powered-by: - ASP.NET status: @@ -3668,12 +3742,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPE/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3685,7 +3759,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:47 GMT + - Tue, 13 Jul 2021 08:56:33 GMT expires: - '-1' pragma: @@ -3701,7 +3775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -3721,12 +3795,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPW/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -3738,7 +3812,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:48 GMT + - Tue, 13 Jul 2021 08:56:34 GMT expires: - '-1' pragma: @@ -3754,7 +3828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -3774,25 +3848,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/prnookal-aueast/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp/protectedItems/VM;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","name":"VM;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm4vvrp","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.Compute/virtualMachines/clitest-vm4vvrp","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T07:35:58.8301725Z","protectedItemDataId":"70369788043934","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.Compute/virtualMachines/clitest-vm4vvrp","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T07:36:02.191389Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2362' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:48 GMT + - Tue, 13 Jul 2021 08:56:36 GMT expires: - '-1' pragma: @@ -3808,7 +3881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '134' x-powered-by: - ASP.NET status: @@ -3828,24 +3901,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupProtectedItems?api-version=2021-01-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/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanase_group;akkanase/protectedItems/VM;iaasvmcontainerv2;akkanase_group;akkanase","name":"VM;iaasvmcontainerv2;akkanase_group;akkanase","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":"akkanase","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.Compute/virtualMachines/akkanase","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-07-12T17:39:37.396353Z","protectedItemDataId":"5639016908855234954","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanase_group;akkanase","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.Compute/virtualMachines/akkanase","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T17:39:40.2625846Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2001' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:48 GMT + - Tue, 13 Jul 2021 08:56:36 GMT expires: - '-1' pragma: @@ -3861,7 +3935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '131' x-powered-by: - ASP.NET status: @@ -3881,25 +3955,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb/protectedItems/VM;iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb","name":"VM;iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmjxorb","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.Compute/virtualMachines/clitest-vmjxorb","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T07:37:50.4046169Z","protectedItemDataId":"1152094","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.Compute/virtualMachines/clitest-vmjxorb","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T07:37:53.3163527Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rg1;jakavetvm2/protectedItems/VM;iaasvmcontainerv2;rg1;jakavetvm2","name":"VM;iaasvmcontainerv2;rg1;jakavetvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"jakavetVM2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/jakavetVM2","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-07-12T12:31:23.3295897Z","protectedItemDataId":"87962247001914","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;rg1;jakavetvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/jakavetVM2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupPolicies/DailyPolicy-kqbpndhz","policyName":"DailyPolicy-kqbpndhz","lastRecoveryPoint":"2021-07-12T12:31:27.5320821Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2356' + - '1744' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:48 GMT + - Tue, 13 Jul 2021 08:56:36 GMT expires: - '-1' pragma: @@ -3915,7 +3989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '133' x-powered-by: - ASP.NET status: @@ -3935,24 +4009,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupProtectedItems?api-version=2021-01-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/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinkrg;jakavetrg/protectedItems/VM;iaasvmcontainerv2;abhinkrg;jakavetrg","name":"VM;iaasvmcontainerv2;abhinkrg;jakavetrg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"jakavetRG","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/jakavetRG","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-07-12T19:31:50.34115Z","protectedItemDataId":"193515774031053","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinkrg;jakavetrg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/jakavetRG","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:31:53.4389342Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2/protectedItems/VM;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","name":"VM;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sakaarhotfix2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Compute/virtualMachines/sakaarhotfix2","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"193515390883961","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Compute/virtualMachines/sakaarhotfix2","policyId":"","policyName":"","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3105' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:49 GMT + - Tue, 13 Jul 2021 08:56:37 GMT expires: - '-1' pragma: @@ -3968,7 +4043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '130' x-powered-by: - ASP.NET status: @@ -3988,12 +4063,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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-new/providers/Microsoft.RecoveryServices/vaults/vsarg-rsv/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4005,7 +4080,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:49 GMT + - Tue, 13 Jul 2021 08:56:38 GMT expires: - '-1' pragma: @@ -4021,7 +4096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '133' x-powered-by: - ASP.NET status: @@ -4041,12 +4116,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/MUADemoVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4058,7 +4133,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:50 GMT + - Tue, 13 Jul 2021 08:56:39 GMT expires: - '-1' pragma: @@ -4074,7 +4149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '134' x-powered-by: - ASP.NET status: @@ -4094,12 +4169,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo12/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newMUAVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4111,7 +4186,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:50 GMT + - Tue, 13 Jul 2021 08:56:41 GMT expires: - '-1' pragma: @@ -4127,7 +4202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -4147,12 +4222,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newvault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4164,7 +4239,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:51 GMT + - Tue, 13 Jul 2021 08:56:43 GMT expires: - '-1' pragma: @@ -4180,7 +4255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '134' x-powered-by: - ASP.NET status: @@ -4200,12 +4275,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoosql/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4217,7 +4292,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:52 GMT + - Tue, 13 Jul 2021 08:56:43 GMT expires: - '-1' pragma: @@ -4233,7 +4308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -4253,12 +4328,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/MUADemoVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4270,7 +4345,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:52 GMT + - Tue, 13 Jul 2021 08:56:46 GMT expires: - '-1' pragma: @@ -4286,7 +4361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '132' x-powered-by: - ASP.NET status: @@ -4306,12 +4381,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/muaVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4323,7 +4398,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:52 GMT + - Tue, 13 Jul 2021 08:56:46 GMT expires: - '-1' pragma: @@ -4339,7 +4414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '138' x-powered-by: - ASP.NET status: @@ -4359,12 +4434,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4376,7 +4451,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:53 GMT + - Tue, 13 Jul 2021 08:56:48 GMT expires: - '-1' pragma: @@ -4392,7 +4467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: @@ -4412,12 +4487,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault4/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4429,7 +4504,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:54 GMT + - Tue, 13 Jul 2021 08:56:48 GMT expires: - '-1' pragma: @@ -4445,7 +4520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '130' x-powered-by: - ASP.NET status: @@ -4465,12 +4540,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/hakavetMUAVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4482,7 +4557,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:54 GMT + - Tue, 13 Jul 2021 08:56:51 GMT expires: - '-1' pragma: @@ -4498,7 +4573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '132' x-powered-by: - ASP.NET status: @@ -4518,12 +4593,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/wcusvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4535,7 +4610,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:54 GMT + - Tue, 13 Jul 2021 08:56:52 GMT expires: - '-1' pragma: @@ -4551,7 +4626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '137' x-powered-by: - ASP.NET status: @@ -4571,37 +4646,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupAdminMadhudeRG/providers/Microsoft.RecoveryServices/vaults/MadhuDeMFATestWCUS/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"TransientDegraded","resourceHealthDetails":[{"code":400309,"title":"UserErrorGenericResourceNotFound","message":"Azure - resource does not exist.","recommendations":["Please make sure required resources - exist. If the issue persists, contact Microsoft support."]}]}},"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":"CompletedWithWarnings","lastBackupTime":"2021-06-19T15:10:53.8938236Z","protectedItemDataId":"35185801335735","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T15:09:39.4701538Z","isArchiveEnabled":false}},{"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":"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":"sdsadsad","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad","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-06-20T16:06:24.4401498Z","protectedItemDataId":"35184869793789","extendedProperties":{},"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":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-07-27T16:03:37.6716963Z","isArchiveEnabled":false}},{"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":"ProtectionStopped","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":"","policyName":"","lastRecoveryPoint":"2020-09-13T22:38:39.3505175Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;v2pstestvm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;v2pstestvm","name":"VM;iaasvmcontainerv2;sarath-rg;v2pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"v2pstestvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/v2pstestvm","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35185285683701","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;v2pstestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/v2pstestvm","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '7216' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:55 GMT + - Tue, 13 Jul 2021 08:56:54 GMT expires: - '-1' pragma: @@ -4617,7 +4679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '132' x-powered-by: - ASP.NET status: @@ -4637,12 +4699,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrossTenantMadhudeRG/providers/Microsoft.RecoveryServices/vaults/CrossTenantVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4654,7 +4716,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:56 GMT + - Tue, 13 Jul 2021 08:56:55 GMT expires: - '-1' pragma: @@ -4670,7 +4732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '128' x-powered-by: - ASP.NET status: @@ -4690,12 +4752,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mfa_mua_rg/providers/Microsoft.RecoveryServices/vaults/mfamuarsvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4707,7 +4769,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:56 GMT + - Tue, 13 Jul 2021 08:56:56 GMT expires: - '-1' pragma: @@ -4723,7 +4785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '133' x-powered-by: - ASP.NET status: @@ -4743,12 +4805,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGuardTesting/providers/Microsoft.RecoveryServices/vaults/resourceGuardTesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -4760,7 +4822,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:57 GMT + - Tue, 13 Jul 2021 08:56:58 GMT expires: - '-1' pragma: @@ -4776,7 +4838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -4796,25 +4858,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsMuaMfaRg/providers/Microsoft.RecoveryServices/vaults/UtsMuaVault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300/protectedItems/VM;iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300","name":"VM;iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM4a9300","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.Compute/virtualMachines/PSTestVM4a9300","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-05-18T15:28:22.469368Z","protectedItemDataId":"70369685895750","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.Compute/virtualMachines/PSTestVM4a9300","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-05-18T15:28:26.0216712Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1869' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:57 GMT + - Tue, 13 Jul 2021 08:56:59 GMT expires: - '-1' pragma: @@ -4830,7 +4891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '131' x-powered-by: - ASP.NET status: @@ -4850,25 +4911,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WCUSMadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WCUSMadhuDeVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80/protectedItems/VM;iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80","name":"VM;iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM7e8b80","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.Compute/virtualMachines/PSTestVM7e8b80","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-08T06:40:25.1142538Z","protectedItemDataId":"70369713343417","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.Compute/virtualMachines/PSTestVM7e8b80","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-08T06:40:28.8486198Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1870' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:57 GMT + - Tue, 13 Jul 2021 08:57:00 GMT expires: - '-1' pragma: @@ -4884,7 +4944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: @@ -4904,24 +4964,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupProtectedItems?api-version=2021-01-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/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;viveksisql1;viveksisql1/protectedItems/VM;iaasvmcontainerv2;viveksisql1;viveksisql1","name":"VM;iaasvmcontainerv2;viveksisql1;viveksisql1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"viveksisql1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Compute/virtualMachines/viveksisql1","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-07-12T20:03:09.1382648Z","protectedItemDataId":"7660728519602961543","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;viveksisql1;viveksisql1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Compute/virtualMachines/viveksisql1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:03:18.0127714Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1875' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:57 GMT + - Tue, 13 Jul 2021 08:57:01 GMT expires: - '-1' pragma: @@ -4937,7 +4998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '133' x-powered-by: - ASP.NET status: @@ -4957,24 +5018,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupProtectedItems?api-version=2021-01-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/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM/protectedItems/VM;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","name":"VM;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"MadhuCrrTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCrrTestRG/providers/Microsoft.Compute/virtualMachines/MadhuCrrTestVM","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-07-12T19:37:28.4674346Z","protectedItemDataId":"7660693336963666473","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCrrTestRG/providers/Microsoft.Compute/virtualMachines/MadhuCrrTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:37:31.7418845Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1888' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:58 GMT + - Tue, 13 Jul 2021 08:57:03 GMT expires: - '-1' pragma: @@ -4990,7 +5052,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '129' x-powered-by: - ASP.NET status: @@ -5010,12 +5072,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrg/providers/Microsoft.RecoveryServices/vaults/zakVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5027,7 +5089,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:59 GMT + - Tue, 13 Jul 2021 08:57:04 GMT expires: - '-1' pragma: @@ -5043,7 +5105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '134' x-powered-by: - ASP.NET status: @@ -5063,36 +5125,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testvmchgsql13/protectedItems/VM;iaasvmcontainerv2;chandrikarg;testvmchgsql13","name":"VM;iaasvmcontainerv2;chandrikarg;testvmchgsql13","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmchgsql13","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmchgsql13","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T00:40:05.3252653Z","protectedItemDataId":"70370596079636","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;chandrikarg;testvmchgsql13","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmchgsql13","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy-km3j84jb","policyName":"DailyPolicy-km3j84jb","lastRecoveryPoint":"2021-06-21T00:40:18.3760846Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectedItems/VM;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"VM;iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job - is cancelled.","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"nilsha-test","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T13:38:15.0392888Z","protectedItemDataId":"70370549617528","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;nilay-rg;nilsha-test","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:35:55.6144022Z","isArchiveEnabled":false}},{"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":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-03-31T19:08:14.904885Z","protectedItemDataId":"70370353422863","extendedProperties":{"linuxVmApplicationName":""},"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":"","policyName":"","lastRecoveryPoint":"2021-03-31T19:08:24.8739039Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sarath-sqltestvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T04:03:21.7941824Z","protectedItemDataId":"70369653559953","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy-kn5t33ex","policyName":"DailyPolicy-kn5t33ex","lastRecoveryPoint":"2021-06-21T04:03:25.5841163Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"VM;iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sarathPSTest001","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T11:33:18.4196644Z","protectedItemDataId":"70369496373243","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarathpstest001","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/dsddssad","policyName":"dsddssad","lastRecoveryPoint":"2021-06-21T11:33:22.9862494Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarathvm","name":"VM;iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sarathvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T21:34:51.9313286Z","protectedItemDataId":"70370145517849","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;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/adi-afec-2","policyName":"adi-afec-2","lastRecoveryPoint":"2021-06-20T21:34:55.4803504Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectedItems/VM;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"VM;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"dsadsa","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T19:39:36.0461304Z","protectedItemDataId":"70369872887780","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy232","policyName":"DailyPolicy232","lastRecoveryPoint":"2021-06-20T19:39:38.3419103Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectedItems/VM;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"VM;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400380,"title":"DiskAPIRevokeSASFailed","message":"Failed - to reset access of the restored disk(s).","recommendations":["Please try again. - If problem persists, contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sddsds","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T14:09:53.0366152Z","protectedItemDataId":"70370137300548","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/mypooolicy","policyName":"mypooolicy","lastRecoveryPoint":"2021-06-21T14:01:37.1582231Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectedItems/VM;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"VM;iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sisi-mercury","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T19:35:14.3975158Z","protectedItemDataId":"70370049656096","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy232","policyName":"DailyPolicy232","lastRecoveryPoint":"2021-06-20T19:35:17.7891771Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;uksstamptesting;ukskosinghavm/protectedItems/VM;iaasvmcontainerv2;uksstamptesting;ukskosinghavm","name":"VM;iaasvmcontainerv2;uksstamptesting;ukskosinghavm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"uksKosinghaVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.Compute/virtualMachines/uksKosinghaVM","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-07-12T18:33:51.6839112Z","protectedItemDataId":"8565864083995367194","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;uksstamptesting;ukskosinghavm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.Compute/virtualMachines/uksKosinghaVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T18:33:54.9924989Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '17007' + - '1895' content-type: - application/json date: - - Mon, 21 Jun 2021 14:03:59 GMT + - Tue, 13 Jul 2021 08:57:06 GMT expires: - '-1' pragma: @@ -5108,7 +5159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '132' x-powered-by: - ASP.NET status: @@ -5128,24 +5179,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupProtectedItems?api-version=2021-01-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/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB/protectedItems/VM;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","name":"VM;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaUKSTest-ukw-10GB","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Compute/virtualMachines/kosinghaUKSTest-ukw-10GB","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-07-12T19:34:48.1563262Z","protectedItemDataId":"8111088483869065758","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Compute/virtualMachines/kosinghaUKSTest-ukw-10GB","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupPolicies/DailyPolicy-kn4m00cu","policyName":"DailyPolicy-kn4m00cu","lastRecoveryPoint":"2021-07-12T19:34:51.0246117Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1957' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:00 GMT + - Tue, 13 Jul 2021 08:57:08 GMT expires: - '-1' pragma: @@ -5161,7 +5213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '133' x-powered-by: - ASP.NET status: @@ -5181,12 +5233,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgKRC-otds-rraj/providers/Microsoft.RecoveryServices/vaults/vault108/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5198,7 +5250,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:01 GMT + - Tue, 13 Jul 2021 08:57:09 GMT expires: - '-1' pragma: @@ -5214,7 +5266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '128' x-powered-by: - ASP.NET status: @@ -5234,12 +5286,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/swtestvault100/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5251,7 +5303,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:01 GMT + - Tue, 13 Jul 2021 08:57:10 GMT expires: - '-1' pragma: @@ -5267,7 +5319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '131' x-powered-by: - ASP.NET status: @@ -5287,12 +5339,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR/providers/Microsoft.RecoveryServices/vaults/hiagaCRRvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5304,7 +5356,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:01 GMT + - Tue, 13 Jul 2021 08:57:11 GMT expires: - '-1' pragma: @@ -5320,7 +5372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '129' x-powered-by: - ASP.NET status: @@ -5340,12 +5392,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.RecoveryServices/vaults/abhinkszw/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5357,7 +5409,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:02 GMT + - Tue, 13 Jul 2021 08:57:13 GMT expires: - '-1' pragma: @@ -5373,7 +5425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '128' x-powered-by: - ASP.NET status: @@ -5393,30 +5445,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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","isArchiveEnabled":false}},{"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":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-06-20T19:07:59.2133921Z","protectedItemDataId":"52777211426397","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T19:08:15.5701124Z","isArchiveEnabled":false}},{"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":"TransientUnhealthy","resourceHealthDetails":[{"code":400004,"title":"DataTransferFromVaultFailed","message":"Data - transfer from the vault failed.","recommendations":["Please retry the operation - in a few minutes. If the problem persists, please contact Microsoft support."]}]},"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-06-20T19:06:58.6662904Z","protectedItemDataId":"52778470662281","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T19:07:00.4929841Z","isArchiveEnabled":false}},{"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;testvmdelete/protectedItems/VM;iaasvmcontainerv2;shswain-rg-donotuse;testvmdelete","name":"VM;iaasvmcontainerv2;shswain-rg-donotuse;testvmdelete","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmdelete","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/testvmdelete","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T21:02:54.4652302Z","protectedItemDataId":"52777700834425","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true},"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-donotuse;testvmdelete","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/testvmdelete","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T21:02:57.4950728Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;RGPETEST;VMPeTest1/protectedItems/VM;iaasvmcontainerv2;RGPETEST;VMPeTest1","name":"VM;iaasvmcontainerv2;RGPETEST;VMPeTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"VMPeTest1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.Compute/virtualMachines/VMPeTest1","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-07-12T23:06:51.06571Z","protectedItemDataId":"52777393879077","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;RGPETEST;VMPeTest1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.Compute/virtualMachines/VMPeTest1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T23:06:54.5033338Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '8005' + - '1783' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:02 GMT + - Tue, 13 Jul 2021 08:57:14 GMT expires: - '-1' pragma: @@ -5432,7 +5479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '131' x-powered-by: - ASP.NET status: @@ -5452,24 +5499,29 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupProtectedItems?api-version=2021-01-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/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","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":"ldkosignha32","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosignha32","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-27T20:39:29.5296808Z","protectedItemDataId":"17592761839680","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosignha32","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti/protectedItems/VM;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","name":"VM;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ldkosneeti","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosneeti","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-27T20:38:53.5773189Z","protectedItemDataId":"17592663061130","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosneeti","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-27T20:38:58.2619668Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3949' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:03 GMT + - Tue, 13 Jul 2021 08:57:14 GMT expires: - '-1' pragma: @@ -5485,7 +5537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '130' x-powered-by: - ASP.NET status: @@ -5505,12 +5557,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar0107/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5522,7 +5574,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:03 GMT + - Tue, 13 Jul 2021 08:57:15 GMT expires: - '-1' pragma: @@ -5538,7 +5590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '129' x-powered-by: - ASP.NET status: @@ -5558,12 +5610,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar0203/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5575,7 +5627,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:03 GMT + - Tue, 13 Jul 2021 08:57:16 GMT expires: - '-1' pragma: @@ -5591,7 +5643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '132' x-powered-by: - ASP.NET status: @@ -5611,12 +5663,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar050315/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -5628,7 +5680,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:03 GMT + - Tue, 13 Jul 2021 08:57:16 GMT expires: - '-1' pragma: @@ -5644,7 +5696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '130' x-powered-by: - ASP.NET status: @@ -5658,56 +5710,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.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07051/backupProtectedItems?api-version=2021-01-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\": \"a5e50cc5-d167-422a-b93b-915a419ed262\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": - \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b095cf0162ef4673bd56fb4d81287076\",\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_b095cf0162ef4673bd56fb4d81287076\"\r\n - \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000003\",\r\n - \ \"adminUsername\": \"clitest-vm000003\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2249' + - '12' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 14:04:04 GMT + - Tue, 13 Jul 2021 08:57:17 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: @@ -5716,8 +5748,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31933 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -5729,27 +5763,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: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07052/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T14%3A01%3A45.7946673Z''\"","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: - - Mon, 21 Jun 2021 14:04:04 GMT + - Tue, 13 Jul 2021 08:57:18 GMT expires: - '-1' pragma: @@ -5764,6 +5801,10 @@ interactions: - 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 @@ -5775,30 +5816,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar123/backupProtectedItems?api-version=2021-01-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":["2021-06-22T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-22T00:00: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: - - Mon, 21 Jun 2021 14:04:05 GMT + - Tue, 13 Jul 2021 08:57:18 GMT expires: - '-1' pragma: @@ -5814,7 +5855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -5828,30 +5869,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar20073/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp;clitest-vmdxoea/protectableItems/vm;iaasvmcontainerv2;clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp;clitest-vmdxoea","name":"iaasvmcontainerv2;clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp;clitest-vmdxoea","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp/providers/Microsoft.Compute/virtualMachines/clitest-vmdxoea","virtualMachineVersion":"Compute","resourceGroup":"clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmdxoea","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp;clitest-vmndhfh/protectableItems/vm;iaasvmcontainerv2;clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp;clitest-vmndhfh","name":"iaasvmcontainerv2;clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp;clitest-vmndhfh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp/providers/Microsoft.Compute/virtualMachines/clitest-vmndhfh","virtualMachineVersion":"Compute","resourceGroup":"clitest.rglalaul44dzue6qgilhur2zg6x3bc2f5zbmhneyfz4la7mxf2ksbcxaipm5qwh35dp","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmndhfh","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '8271' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:05 GMT + - Tue, 13 Jul 2021 08:57:19 GMT expires: - '-1' pragma: @@ -5867,7 +5908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '127' x-powered-by: - ASP.NET status: @@ -5881,49 +5922,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar23071/backupProtectedItems?api-version=2021-01-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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:06 GMT + - Tue, 13 Jul 2021 08: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/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5932,45 +5975,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewCCYNewVault3/backupProtectedItems?api-version=2021-01-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: - - Mon, 21 Jun 2021 14:04:07 GMT + - Tue, 13 Jul 2021 08: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/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5979,45 +6028,52 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupProtectedItems?api-version=2021-01-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/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","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":"archsqlccyvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm1","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-07-13T05:34:30.9771057Z","protectedItemDataId":"17592741580724","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:34:34.5427367Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '2069' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:08 GMT + - Tue, 13 Jul 2021 08: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/backupFabrics/Azure/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '126' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6026,45 +6082,52 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupProtectedItems?api-version=2021-01-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/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4/protectedItems/VM;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","name":"VM;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"archsqlccyvm4","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm4","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-07-12T19:35:07.3184603Z","protectedItemDataId":"70370698966816","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:35:11.2114494Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '1897' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:09 GMT + - Tue, 13 Jul 2021 08: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/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6073,36 +6136,201 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtesting2/backupProtectedItems?api-version=2021-01-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: - - Mon, 21 Jun 2021 14:04:10 GMT + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy4/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08: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/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -6110,8 +6338,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6120,45 +6348,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupadminTestRG/providers/Microsoft.RecoveryServices/vaults/ResourceGuardMadhuDeVault/backupProtectedItems?api-version=2021-01-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: - - Mon, 21 Jun 2021 14:04:11 GMT + - Tue, 13 Jul 2021 08:57: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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6167,45 +6401,21993 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault549/backupProtectedItems?api-version=2021-01-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: + - '12' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08: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 + 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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"archsqlccyvm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","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-07-12T18:09:01.8179778Z","protectedItemDataId":"70369333980246","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T18:09:05.3606036Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1901' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08: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 + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoTestVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08: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-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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghacrrBill/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrbmsrunnercanarywestus/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.RecoveryServices/vaults/dchandrPostGress/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupRestore/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/CRRTestSourceVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallavm1_group;gaallavm1/protectedItems/VM;iaasvmcontainerv2;gaallavm1_group;gaallavm1","name":"VM;iaasvmcontainerv2;gaallavm1_group;gaallavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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":"gaallaVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallaVM1_group/providers/Microsoft.Compute/virtualMachines/gaallaVM1","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":"2021-03-11T11:40:58.8973948Z","protectedItemDataId":"140739491633921","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallavm1_group;gaallavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallaVM1_group/providers/Microsoft.Compute/virtualMachines/gaallaVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-25T21:40:12.9822444Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2342' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archhanavm1/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archhanavm1","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archhanavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ArchHanaVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/ArchHanaVM1","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-07-13T02:33:21.3152141Z","protectedItemDataId":"52778690893293","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/ArchHanaVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:33:25.1677645Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","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":"backuptesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/backuptesting","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-07-13T02:34:40.3970576Z","protectedItemDataId":"52778162276529","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/backuptesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:34:43.2463085Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaBillTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaBillTest","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-07-13T02:38:44.4744731Z","protectedItemDataId":"52776782651421","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaBillTest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:38:51.3414655Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400003,"title":"RestoreOperationFailed","message":"Restore + failed with an internal error.","recommendations":["Please retry the operation + in a few minutes. If the problem persists, please contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaVm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaVm1","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-07-13T02:39:00.8007104Z","protectedItemDataId":"52777567164889","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaVm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:39:03.3883906Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","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":"kosinghavm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm2","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-05-19T02:35:41.5155903Z","protectedItemDataId":"52777155670626","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-05-19T02:35:44.1583667Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","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":"kosinghavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm3","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-07-13T02:31:59.7080571Z","protectedItemDataId":"52777797998217","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:32:02.7766988Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '12273' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400199,"title":"VMCreationTimeOutStorageErrorV2","message":"Create + VM took very long time and got timed out","recommendations":["Please retry + the operation after some time. If problem persists, please contact Microsoft + support."]}]}},"friendlyName":"dg123","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/dg123","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-07-12T12:37:18.7493514Z","protectedItemDataId":"17592941450352","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/dg123","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-06T15:19:30.3189613Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2013' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd/protectedItems/VM;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","name":"VM;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","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":"ld-kosingha-30-hdd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ld-kosingha-30-hdd","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":"2021-01-27T23:40:58.201612Z","protectedItemDataId":"17593919300788","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ld-kosingha-30-hdd","policyId":"","policyName":"","lastRecoveryPoint":"2021-01-27T23:41:01.189038Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1932' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win/protectedItems/VM;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","name":"VM;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","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":"ld-kosingha-ccy-8tb-hdd-win","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ccy-8tb-hdd-win","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400240,"title":"IaasVmHealthYellowDefault","message":"Backup + pre-checks for this virtual machine completed with warnings.","recommendations":["There + are no recommendations available at the moment to ensure successful backups. + Check Backup pre-check status after the next backup and perform any suggested + or required actions"]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-07-12T19:40:49.8493207Z","protectedItemDataId":"70370189974668","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ccy-8tb-hdd-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupPolicies/DailyPolicy-kn4grij7","policyName":"DailyPolicy-kn4grij7","lastRecoveryPoint":"2021-07-05T20:05:27.1175874Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2431' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/MFATest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/TestVaultABC/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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 +- 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/MadhuDeResourceGuardTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-t1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault4/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1/protectedItems/VM;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","name":"VM;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","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"]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"monjainccycrrvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.Compute/virtualMachines/monjainccycrrvm1","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":"2021-07-12T07:56:12.0506615Z","protectedItemDataId":"1680610845","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.Compute/virtualMachines/monjainccycrrvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-27T18:08:41.8479408Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2399' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muaRG/providers/Microsoft.RecoveryServices/vaults/muaVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MUAtestRG/providers/Microsoft.RecoveryServices/vaults/MUAtesting123/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newonerg/providers/Microsoft.RecoveryServices/vaults/vault204/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/CRRTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/prodVault1307A/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/testVault1307A/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/vault821/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/vault909/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surrai-cmk-test-ccy/providers/Microsoft.RecoveryServices/vaults/surraiccycmkvault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm/protectedItems/VM;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","name":"VM;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400003,"title":"RestoreOperationFailed","message":"Restore + failed with an internal error.","recommendations":["Please retry the operation + in a few minutes. If the problem persists, please contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400199,"title":"VMCreationTimeOutStorageErrorV2","message":"Create + VM took very long time and got timed out","recommendations":["Please retry + the operation after some time. If problem persists, please contact Microsoft + support."]}]}},"friendlyName":"surraicrrcyyvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.Compute/virtualMachines/surraicrrcyyvm","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-07-12T19:38:22.656102Z","protectedItemDataId":"17593165773223","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.Compute/virtualMachines/surraicrrcyyvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-30T19:37:26.1293818Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2411' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestRG/providers/Microsoft.RecoveryServices/vaults/TestLRSVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghav1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/kosinghav1","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-28T00:36:17.0009184Z","protectedItemDataId":"717172572","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/kosinghav1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-28T00:36:19.3643683Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows/protectedItems/VM;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","name":"VM;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"vikotturA2Windows","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabpostgrestesting/providers/Microsoft.Compute/virtualMachines/vikotturA2Windows","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-07-13T00:34:15.4136379Z","protectedItemDataId":"1375314921","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabpostgrestesting/providers/Microsoft.Compute/virtualMachines/vikotturA2Windows","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:34:18.3448414Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm/protectedItems/VM;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","name":"VM;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surrairecoveryvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.Compute/virtualMachines/surrairecoveryvm","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-07-13T00:38:34.4758081Z","protectedItemDataId":"1503150265","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.Compute/virtualMachines/surrairecoveryvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:38:37.3151895Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmkvm3012","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3012","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-07-13T00:32:23.597313Z","protectedItemDataId":"934321120","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3012","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:32:26.7347206Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ZRSBugBash;asdasdasd/protectedItems/VM;iaasvmcontainerv2;ZRSBugBash;asdasdasd","name":"VM;iaasvmcontainerv2;ZRSBugBash;asdasdasd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"asdasdasd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/asdasdasd","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-07-13T00:33:45.6132644Z","protectedItemDataId":"297071189","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ZRSBugBash;asdasdasd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/asdasdasd","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:33:49.3604403Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '9319' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ecyzonedowndrill;azdrill1/protectedItems/VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill1","name":"VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"azdrill1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill1","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-07-13T00:39:39.3477069Z","protectedItemDataId":"17594289799946","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ecyzonedowndrill;azdrill1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:39:42.0499899Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallarg;crrvm/protectedItems/VM;iaasvmcontainerv2;gaallarg;crrvm","name":"VM;iaasvmcontainerv2;gaallarg;crrvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"crrvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrvm","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-22T00:37:40.199217Z","protectedItemDataId":"17592342705240","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallarg;crrvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrvm","policyId":"","policyName":"","lastRecoveryPoint":"2020-12-22T00:37:44.0545564Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3399' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/adigupt-new/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/dhdjd/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newOne/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/abhinkVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:57: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07053/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar25051/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinitrg;mabagenttestvm/protectedItems/VM;iaasvmcontainerv2;abhinitrg;mabagenttestvm","name":"VM;iaasvmcontainerv2;abhinitrg;mabagenttestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"MABAgentTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Compute/virtualMachines/MABAgentTestVM","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-07-12T20:40:04.3908883Z","protectedItemDataId":"52777648213067","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinitrg;mabagenttestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Compute/virtualMachines/MABAgentTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:40:09.2808122Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1883' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrgVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ecyzonedowndrill;azdrill3/protectedItems/VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill3","name":"VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"azdrill3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill3","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-07-12T19:38:26.6495087Z","protectedItemDataId":"35185671837196","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true},"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ecyzonedowndrill;azdrill3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupPolicies/DailyPolicy2","policyName":"DailyPolicy2","lastRecoveryPoint":"2021-07-12T19:38:31.3489943Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1935' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-test/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault945/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;crrtest;crrtargetvm/protectedItems/VM;iaasvmcontainerv2;crrtest;crrtargetvm","name":"VM;iaasvmcontainerv2;crrtest;crrtargetvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"CrrTargetVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrrTest/providers/Microsoft.Compute/virtualMachines/CrrTargetVM","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-21T23:40:28.9573261Z","protectedItemDataId":"1245944172","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;crrtest;crrtargetvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrrTest/providers/Microsoft.Compute/virtualMachines/CrrTargetVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-21T23:41:00.3045889Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1811' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ECYDrill/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault269/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault445/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/WorkloadAzDrillZRS/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"arpja-drl-zn1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"123146583354166","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T07:57:10.040157Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn2","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-07-13T07:29:21.2079752Z","protectedItemDataId":"123146248280396","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:04:59.8716357Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn3","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-07-13T07:29:31.0939837Z","protectedItemDataId":"123147171439709","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T07:29:35.4847462Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5317' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahooblob;testgeesahoovm/protectedItems/VM;iaasvmcontainerv2;gesahooblob;testgeesahoovm","name":"VM;iaasvmcontainerv2;gesahooblob;testgeesahoovm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgeesahoovm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.Compute/virtualMachines/testgeesahoovm","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184471494762","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahooblob;testgeesahoovm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.Compute/virtualMachines/testgeesahoovm","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1299' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;aarifdomain;kosinghavm1/protectedItems/VM;iaasvmcontainerv2;aarifdomain;kosinghavm1","name":"VM;iaasvmcontainerv2;aarifdomain;kosinghavm1","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":"kosinghavm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.Compute/virtualMachines/kosinghavm1","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-07-12T22:08:30.6768933Z","protectedItemDataId":"87962882385959","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;aarifdomain;kosinghavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.Compute/virtualMachines/kosinghavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-11T22:03:24.2724508Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallarg;crrnewvm/protectedItems/VM;iaasvmcontainerv2;gaallarg;crrnewvm","name":"VM;iaasvmcontainerv2;gaallarg;crrnewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"crrnewvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrnewvm","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-21T22:05:43.1920926Z","protectedItemDataId":"87962573325455","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallarg;crrnewvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrnewvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-21T22:05:46.176328Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3919' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd/protectedItems/VM;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","name":"VM;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ld-kosingha-ecy-8tb-stssd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ecy-8tb-stssd","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-07-12T05:05:03.6386924Z","protectedItemDataId":"35186289976282","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ecy-8tb-stssd","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:07:10.3927266Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2030' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/ECYResourceMove/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/CRRTestTargetVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.RecoveryServices/vaults/MadhuDeTestVM/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-apitest-s1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-s1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-s10/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-vault5/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/AutoUpdateTestMARS/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmktestvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmktestvm1","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-07-12T22:10:11.6224104Z","protectedItemDataId":"52778566018387","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmktestvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T22:10:14.2081888Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1897' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmkvm3011","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3011","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-07-13T00:39:58.6324191Z","protectedItemDataId":"724401492","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3011","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:40:02.0345112Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1891' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1/protectedItems/VM;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","name":"VM;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraitestecyvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraitestecyvm1","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-07-13T01:32:07.227026Z","protectedItemDataId":"17593342647707","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraitestecyvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:32:10.7430408Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1900' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2/protectedItems/VM;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","name":"VM;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraiecytestvm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraiecytestvm2","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-07-12T23:10:01.4371359Z","protectedItemDataId":"70370664469282","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraiecytestvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T23:10:04.8110241Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1907' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrgnew/providers/Microsoft.RecoveryServices/vaults/vault940/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindtestvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindzrstest2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","name":"VM;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","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":"sureshtvmzrs","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/sureshtvmzrs","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-07-12T09:37:14.7227392Z","protectedItemDataId":"35185043494290","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/sureshtvmzrs","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:37:17.2127915Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2007' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;viharipzrstesting/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;viharipzrstesting","name":"VM;iaasvmcontainerv2;zrsbugbash;viharipzrstesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"VihariPZRSTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/VihariPZRSTesting","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-07-12T09:31:35.9683441Z","protectedItemDataId":"202658094","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;viharipzrstesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/VihariPZRSTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:32:33.8515535Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1889' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinkrg;zrstesting/protectedItems/VM;iaasvmcontainerv2;abhinkrg;zrstesting","name":"VM;iaasvmcontainerv2;abhinkrg;zrstesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ZRSTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/ZRSTesting","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-07-12T15:36:21.1559422Z","protectedItemDataId":"17593788754455","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinkrg;zrstesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/ZRSTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupPolicies/ZRSPPP","policyName":"ZRSPPP","lastRecoveryPoint":"2021-07-12T15:36:25.51482Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1805' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;ztestvm/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;ztestvm","name":"VM;iaasvmcontainerv2;zrsbugbash;ztestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ZTestVm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/ZTestVm","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-07-12T09:36:22.688144Z","protectedItemDataId":"52777554480039","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;ztestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/ZTestVm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:36:25.4780487Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1807' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema-rg;akneema-vm/protectedItems/VM;iaasvmcontainerv2;akneema-rg;akneema-vm","name":"VM;iaasvmcontainerv2;akneema-rg;akneema-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Compute/virtualMachines/akneema-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":"2021-07-13T05:05:22.2634589Z","protectedItemDataId":"70368884915590","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akneema-rg;akneema-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Compute/virtualMachines/akneema-vm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:05:25.351469Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1809' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmitttest/providers/Microsoft.RecoveryServices/vaults/asmitttestvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2axfrllddcexsd7lf5jt2kizmwln26tved5xpd3yjdmvw37lssrbffyzev42zfgop/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ilaqmfbtio/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3/protectedItems/VM;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","name":"VM;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm5eob3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","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-07-13T08:05:52.5577592Z","protectedItemDataId":"70369028051695","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:05:56.0570434Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2456' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk5pb5p7jqch/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r/protectedItems/VM;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","name":"VM;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmh7a4r","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.Compute/virtualMachines/clitest-vmh7a4r","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-07-12T16:37:15.066406Z","protectedItemDataId":"70370221429489","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.Compute/virtualMachines/clitest-vmh7a4r","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:37:17.7829359Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2362' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia/protectedItems/VM;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","name":"VM;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmcojia","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.Compute/virtualMachines/clitest-vmcojia","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T06:24:01.2996298Z","protectedItemDataId":"2617328","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.Compute/virtualMachines/clitest-vmcojia","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T06:24:05.2187101Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2356' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdpjnygfyazfuwkslmu5qsjniz7pe7hpn7gw5c2sdejk37okvpcjt25mlmigjr4ruz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultviltn3z3hdn/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.RecoveryServices/vaults/clitest-vault7vgbsde3rvo/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtmrta7e2n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu2sa3i6fren/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo5jjxrimsllok4xd7vkruddg7h2yvde7elfc5l4ee7fz6wm6jievftxow7tsa2lej/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxvz7kzd22fq/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i/protectedItems/VM;iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i","name":"VM;iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmvuo7i","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.Compute/virtualMachines/clitest-vmvuo7i","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"832763478","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.Compute/virtualMachines/clitest-vmvuo7i","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1983' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpuiuax7tzaks7rbrwy3cmj4mni6f6oovxhj2cyaoz5vwpfjngzt7jzcemguuezeix/providers/Microsoft.RecoveryServices/vaults/clitest-vault4uqtshko5om/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l/protectedItems/VM;iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l","name":"VM;iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmd3k4l","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.Compute/virtualMachines/clitest-vmd3k4l","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-07-13T08:04:35.5907402Z","protectedItemDataId":"17592430864446","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.Compute/virtualMachines/clitest-vmd3k4l","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:04:38.9788859Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtb6fpqzldd/providers/Microsoft.RecoveryServices/vaults/clitest-vault3uww3nsnehj/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j/protectedItems/VM;iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j","name":"VM;iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmvcy5j","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.Compute/virtualMachines/clitest-vmvcy5j","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-07-12T16:37:29.5308183Z","protectedItemDataId":"187652533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.Compute/virtualMachines/clitest-vmvcy5j","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:37:32.2360722Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2358' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw334cvoozs2gpptqdii6smyw4i2kkx3wz6gt2onxu6pddwpdkky5py7nhgu4tl4ud/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwurxwm3wip3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgykrgkyzkxgcik32u5sbwsjy4ttyfd5gcpqotrtrdskgd3hwukphzxjxgulnl6mkdu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcufv3xkmajq/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymouom2j5x4w5rdeaywgsdw7pbfwpqpgphgxoa6lht6ofz46r547txy6vkjtuorvm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh4sgz3r4ht/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz74trrkv7ejfvfrng7ob4kno75fopjy4jzqfn6qj5p5bfjza5bcnomao4yqmpmj7u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4stgkxrddm/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry/protectedItems/VM;iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry","name":"VM;iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmcuwry","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Compute/virtualMachines/clitest-vmcuwry","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-07-12T16:09:27.0352356Z","protectedItemDataId":"833640874","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Compute/virtualMachines/clitest-vmcuwry","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:09:31.2071437Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2451' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;contosorg2;testencvm001/protectedItems/VM;iaasvmcontainerv2;contosorg2;testencvm001","name":"VM;iaasvmcontainerv2;contosorg2;testencvm001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testencvm001","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Compute/virtualMachines/testencvm001","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-07-13T01:08:39.5320727Z","protectedItemDataId":"35185724481896","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;contosorg2;testencvm001","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Compute/virtualMachines/testencvm001","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:08:46.5571353Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;CONTOSORG;ContosoDemoVM/protectedItems/VM;iaasvmcontainerv2;CONTOSORG;ContosoDemoVM","name":"VM;iaasvmcontainerv2;CONTOSORG;ContosoDemoVM","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":"ContosoDemoVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/ContosoDemoVM","protectionStatus":"Unhealthy","protectionState":"Protected","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":"2021-07-12T09:47:17.5673745Z","protectedItemDataId":"35185799530713","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;CONTOSORG;ContosoDemoVM","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/ContosoDemoVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-03-29T07:07:16.1721256Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ContosoRG;testvm001/protectedItems/VM;iaasvmcontainerv2;ContosoRG;testvm001","name":"VM;iaasvmcontainerv2;ContosoRG;testvm001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","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":"testvm001","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm001","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":"2021-05-17T05:30:15.168558Z","protectedItemDataId":"35185680367934","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ContosoRG;testvm001","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm001","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;CONTOSORG;testvm1123/protectedItems/VM;iaasvmcontainerv2;CONTOSORG;testvm1123","name":"VM;iaasvmcontainerv2;CONTOSORG;testvm1123","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvm1123","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm1123","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-07-13T01:01:32.2431944Z","protectedItemDataId":"35186408329621","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;CONTOSORG;testvm1123","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm1123","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:01:36.6987435Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '8144' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/test-v1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarcsstest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarhotfixtest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sakaarmab;sakaarhotfixtest/protectedItems/VM;iaasvmcontainerv2;sakaarmab;sakaarhotfixtest","name":"VM;iaasvmcontainerv2;sakaarmab;sakaarhotfixtest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sakaarhotfixtest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Compute/virtualMachines/sakaarhotfixtest","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-07-12T19:34:45.3557357Z","protectedItemDataId":"350253539","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sakaarmab;sakaarhotfixtest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Compute/virtualMachines/sakaarhotfixtest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:34:48.4418051Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1825' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:58: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcms/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:59: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/newRegionVal/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:59: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcmtesting/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:59: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: + - '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: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"clitest-vm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n + \ \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n + \ \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4f8ca895-5c09-4008-98c2-5146acd66740\",\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.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_713956ce711c4ce8a7c67b8236b13b70\",\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_713956ce711c4ce8a7c67b8236b13b70\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000003\",\r\n + \ \"adminUsername\": \"clitest-vm000003\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n + \ {\r\n \"name\": \"MicrosoftMonitoringAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003/extensions/MicrosoftMonitoringAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": + \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"type\": \"MicrosoftMonitoringAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"workspaceId\":\"8b708aac-b3ae-456f-b1a3-4d3726b4a52e\"}\r\n + \ }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3028' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Jul 2021 08:59:03 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;3999,Microsoft.Compute/LowCostGet30Min;31929 + 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.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T08%3A53%3A22.6566167Z''\"","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: + - Tue, 13 Jul 2021 08:59: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 + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-13T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T18: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: + - Tue, 13 Jul 2021 08:59: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3231' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '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 + Content-Length: + - '0' + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59: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/operationResults/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/e6e33310-191e-40ac-9d7b-75f1b9ec974a?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Tue, 13 Jul 2021 08:59:19 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: + - '139' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4491' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 08:59:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '65' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '61' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '59' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '57' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '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 enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08: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: + - '54' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '51' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '46' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08: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: + - '45' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '42' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"InProgress","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '41' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b0c3cb3e-386a-4822-a01e-9e2be8b52c0f?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","name":"b0c3cb3e-386a-4822-a01e-9e2be8b52c0f","status":"Succeeded","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"2021-07-13T08:59:20.5411661Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3eddc773-1ab7-4512-b8f4-5b881130eb6f"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3eddc773-1ab7-4512-b8f4-5b881130eb6f?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3eddc773-1ab7-4512-b8f4-5b881130eb6f","name":"3eddc773-1ab7-4512-b8f4-5b881130eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.7434793S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T08:59:20.5411661Z","endTime":"2021-07-13T08:59:52.2846454Z","activityId":"918fcf5a-e3b8-11eb-a5c1-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 08:59: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: + - '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: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T08%3A53%3A22.6566167Z''\"","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: + - Tue, 13 Jul 2021 08:59:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + 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: + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2021-03-01 + response: + body: + string: '{"value":[{"location":"westus","name":"adds","etag":"W/\"datetime''2021-05-31T07%3A02%3A42.5074403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/adds","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"CmkTestSkipWL","etag":"W/\"datetime''2020-05-21T14%3A39%3A51.5768432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/CmkTestSkipWL","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"test","etag":"W/\"datetime''2020-04-05T14%3A34%3A25.8014976Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"vault","etag":"W/\"datetime''2020-12-02T10%3A40%3A36.6401797Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"testZRSValue","etag":"W/\"datetime''2020-06-29T12%3A59%3A36.0904892Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testZRSValue","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"amchandnVault1502A","etag":"W/\"datetime''2020-02-15T10%3A36%3A34.5145915Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/Vaults/amchandnVault1502A","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"standard"}},{"location":"westus","name":"dosvaulttesting","etag":"W/\"datetime''2021-07-08T12%3A15%3A49.4261866Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.RecoveryServices/vaults/dosvaulttesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wusKosinghaVault","etag":"W/\"datetime''2020-09-18T08%3A17%3A22.3508123Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/wusKosinghaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wuskosignhavault1","etag":"W/\"datetime''2020-09-19T20%3A12%3A15.4311806Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/wuskosignhavault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"vaultbug","etag":"W/\"datetime''2020-08-28T04%3A32%3A11.372405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultbug/providers/Microsoft.RecoveryServices/vaults/vaultbug","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wuskosinghaVault2","etag":"W/\"datetime''2020-09-20T05%3A59%3A56.4876842Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"ABCTest","etag":"W/\"datetime''2020-12-03T18%3A49%3A06.1964143Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/ABCTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"rtewfasd","etag":"W/\"datetime''2021-06-04T07%3A02%3A33.0990962Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"31e69461-560a-4b1e-88e8-60613fb23dde","startTimeUtc":"2021-06-04T07:02:08.7584831Z","completionTimeUtc":"2021-06-04T07:02:33.0733902Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarDiskRG/providers/Microsoft.RecoveryServices/vaults/rtewfasd","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"test1","etag":"W/\"datetime''2021-03-10T02%3A50%3A02.9274187Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/test1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestVault","etag":"W/\"datetime''2021-01-28T06%3A36%3A56.1613503Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/TestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVault1","etag":"W/\"datetime''2021-06-09T05%3A06%3A46.501142Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/testVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"XXXTestVault","etag":"W/\"datetime''2020-12-10T06%3A16%3A16.9017184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XXXTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"XYZTestVault","etag":"W/\"datetime''2020-12-10T06%3A14%3A54.0851289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XYZTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"jakavetVault","etag":"W/\"datetime''2021-04-27T11%3A07%3A10.316107Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TesCRRABC","etag":"W/\"datetime''2021-01-08T14%3A38%3A29.5049353Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/TesCRRABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"VMTestvault55","etag":"W/\"datetime''2021-04-26T14%3A13%3A09.5945924Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/VMTestvault55","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaulteus","etag":"W/\"datetime''2021-04-22T07%3A56%3A59.7390353Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/testVaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"bcrg","etag":"W/\"datetime''2020-11-03T09%3A59%3A34.4359315Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"Testgegpolicy","etag":"W/\"datetime''2021-01-08T10%3A16%3A18.3584449Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gegRG/providers/Microsoft.RecoveryServices/vaults/Testgegpolicy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"eusKosinghaIAASVMTest","etag":"W/\"datetime''2020-09-21T05%3A36%3A04.5222564Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"kosinghaCRRTest","etag":"W/\"datetime''2020-09-18T06%3A44%3A46.8154853Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"euskosinghavault1","etag":"W/\"datetime''2020-09-19T18%3A32%3A30.4677948Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/euskosinghavault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"euskosinghaVault2","etag":"W/\"datetime''2020-09-20T05%3A51%3A52.4028499Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestVaultABC","etag":"W/\"datetime''2020-12-09T19%3A27%3A30.4707549Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuTestRG/providers/Microsoft.RecoveryServices/vaults/TestVaultABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"mabcrashjobtesting","etag":"W/\"datetime''2021-05-28T07%3A26%3A01.2951182Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pikumarCrashJob/providers/Microsoft.RecoveryServices/vaults/mabcrashjobtesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault219","etag":"W/\"datetime''2021-03-16T11%3A34%3A23.8319583Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault219","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault854","etag":"W/\"datetime''2021-03-24T06%3A56%3A38.8986105Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault854","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"PublicPreviewVault","etag":"W/\"datetime''2021-02-17T07%3A01%3A36.9926607Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PublicpreviewRG/providers/Microsoft.RecoveryServices/vaults/PublicPreviewVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"ResourceGuardTesting","etag":"W/\"datetime''2021-03-23T18%3A04%3A28.8024601Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/ResourceGuardTesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"deletevault","etag":"W/\"datetime''2021-03-05T06%3A50%3A37.9124769Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-restore-disk-rg/providers/Microsoft.RecoveryServices/vaults/deletevault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"deleteme","etag":"W/\"datetime''2021-03-05T07%3A01%3A38.5572866Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/deleteme","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"My-vault","etag":"W/\"datetime''2021-05-27T05%3A23%3A33.2560575Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","Delete + By":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"My-vault-2","etag":"W/\"datetime''2021-05-29T08%3A26%3A17.2301602Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","DeleteBy":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Mycheckingvault","etag":"W/\"datetime''2021-07-07T06%3A36%3A17.7673145Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","DeleteBy":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/Mycheckingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"TesSumit5-managedrsvault","etag":"W/\"datetime''2021-07-08T05%3A32%3A15.4547043Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sumittestsxxbbdwvakp2q/providers/Microsoft.RecoveryServices/vaults/TesSumit5-managedrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestingCRRLrs","etag":"W/\"datetime''2021-02-10T09%3A44%3A11.0390374Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingCrrLrs/providers/Microsoft.RecoveryServices/vaults/TestingCRRLrs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvault","etag":"W/\"datetime''2020-09-17T08%3A33%3A27.9437854Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvault/providers/Microsoft.RecoveryServices/vaults/testvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault441","etag":"W/\"datetime''2021-04-01T11%3A11%3A45.3835831Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK","etag":"W/\"datetime''2021-07-13T04%3A13%3A20.9000871Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-2","etag":"W/\"datetime''2021-07-04T12%3A05%3A28.925451Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a6c0983b-dbf8-47da-9a49-6a850e67b13b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testdemoMSI":{"clientId":"03aaf883-a93c-4dcb-bcb0-bc88411776c8","objectId":"8df55a03-1a34-41ef-9954-2ba3764422a8"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI"},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-3","etag":"W/\"datetime''2021-07-10T15%3A20%3A30.4873057Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1cbf3e7d-3458-4242-8ebc-02342fc2b1c2","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testdemoMSI":{"clientId":"03aaf883-a93c-4dcb-bcb0-bc88411776c8","objectId":"8df55a03-1a34-41ef-9954-2ba3764422a8"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI"},"infrastructureEncryption":"Enabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-4","etag":"W/\"datetime''2021-07-02T07%3A01%3A00.6360877Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c6bdda6a-8b58-45f0-88a5-0dba6d6cba16","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-5","etag":"W/\"datetime''2021-07-13T04%3A22%3A56.1218447Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-6","etag":"W/\"datetime''2021-06-13T14%3A17%3A51.7202976Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1f8e7e87-9271-489d-add2-1fe100a0c97a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-9","etag":"W/\"datetime''2021-06-24T07%3A04%3A15.1977746Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3ffaa1bc-cbfe-44f6-8998-71c2c383634e","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-9","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"TestMadhuDeVault","etag":"W/\"datetime''2020-11-27T04%3A20%3A41.0648542Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestMadhuDeRG/providers/Microsoft.RecoveryServices/vaults/TestMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"CrrTestJPE","etag":"W/\"datetime''2021-04-30T10%3A51%3A27.7251447Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cffd0fa0-eba5-42b7-8b9d-472ae42839ae","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPE","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japanwest","name":"CrrTestJPW","etag":"W/\"datetime''2020-09-18T09%3A33%3A28.0683144Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPW","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"prnookal-aueast","etag":"W/\"datetime''2021-06-18T06%3A25%3A33.5464384Z''\"","tags":{"Owner":"prnookal","isMABUsed":"Yes","Purpose":"runners"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/prnookal-aueast","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralus","name":"vault171","etag":"W/\"datetime''2020-09-21T07%3A33%3A42.7317982Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"newVault24","etag":"W/\"datetime''2021-06-25T02%3A25%3A38.3011515Z''\"","tags":{"MAB + Used ":"yes","Owner":"jakavet","Purpose":" Testing","DeleteBy":"01-2023"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"vault306","etag":"W/\"datetime''2021-04-01T10%3A48%3A57.8877817Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"vsarg-rsv","etag":"W/\"datetime''2020-03-05T11%3A55%3A28.5108108Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Vsarg-new/providers/Microsoft.RecoveryServices/vaults/vsarg-rsv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MUADemoVault","etag":"W/\"datetime''2021-06-03T11%3A56%3A49.6078373Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/MUADemoVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newMUAVault","etag":"W/\"datetime''2021-07-04T12%3A27%3A41.6648586Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newMUAVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newvault2","etag":"W/\"datetime''2021-06-11T07%3A30%3A43.330465Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault3","etag":"W/\"datetime''2021-06-11T08%3A47%3A56.2104608Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MUADemoVault","etag":"W/\"datetime''2021-06-14T09%3A07%3A39.6651499Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/MUADemoVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"muaVault","etag":"W/\"datetime''2021-05-10T21%3A09%3A25.7480954Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/muaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault","etag":"W/\"datetime''2021-06-11T07%3A10%3A07.4184262Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault4","etag":"W/\"datetime''2021-06-11T09%3A35%3A55.7244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hakavetMUAVault","etag":"W/\"datetime''2021-06-28T07%3A12%3A20.4178367Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/hakavetMUAVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"wcusvault","etag":"W/\"datetime''2021-04-07T07%3A46%3A26.5037181Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/wcusvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MadhuDeMFATestWCUS","etag":"W/\"datetime''2021-06-03T09%3A27%3A35.9807688Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupAdminMadhudeRG/providers/Microsoft.RecoveryServices/vaults/MadhuDeMFATestWCUS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"CrossTenantVault","etag":"W/\"datetime''2021-04-14T08%3A02%3A29.7889034Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrossTenantMadhudeRG/providers/Microsoft.RecoveryServices/vaults/CrossTenantVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"mfamuarsvault","etag":"W/\"datetime''2021-06-22T11%3A28%3A02.6891649Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mfa_mua_rg/providers/Microsoft.RecoveryServices/vaults/mfamuarsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"resourceGuardTesting","etag":"W/\"datetime''2021-06-10T09%3A08%3A00.1657773Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGuardTesting/providers/Microsoft.RecoveryServices/vaults/resourceGuardTesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"UtsMuaVault1","etag":"W/\"datetime''2021-06-03T19%3A29%3A48.8002514Z''\"","tags":{"Owner":"utraghuv","Purpose":"Testing","DeleteBy":"01-2025","MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsMuaMfaRg/providers/Microsoft.RecoveryServices/vaults/UtsMuaVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"WCUSMadhuDeVault","etag":"W/\"datetime''2020-09-17T10%3A43%3A46.5117487Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WCUSMadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WCUSMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"WUS2MadhuDeCrrVault","etag":"W/\"datetime''2020-09-17T10%3A04%3A12.6172664Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"vault493","etag":"W/\"datetime''2021-03-16T16%3A03%3A35.4640808Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"zakVault","etag":"W/\"datetime''2020-05-01T02%3A43%3A54.7891358Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrg/providers/Microsoft.RecoveryServices/vaults/zakVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"SourceVault","etag":"W/\"datetime''2020-10-01T13%3A04%3A51.6707309Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"ukwest","name":"vault762","etag":"W/\"datetime''2021-04-05T13%3A09%3A10.0588403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"koreacentral","name":"vault108","etag":"W/\"datetime''2021-03-25T11%3A21%3A22.9805358Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgKRC-otds-rraj/providers/Microsoft.RecoveryServices/vaults/vault108","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"norwayeast","name":"swtestvault100","etag":"W/\"datetime''2021-06-01T02%3A53%3A31.6381416Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/swtestvault100","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"norwayeast","name":"hiagaCRRvault","etag":"W/\"datetime''2021-06-04T10%3A30%3A32.4823025Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"01-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR/providers/Microsoft.RecoveryServices/vaults/hiagaCRRvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"switzerlandwest","name":"abhinkszw","etag":"W/\"datetime''2021-06-04T14%3A16%3A45.3803344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.RecoveryServices/vaults/abhinkszw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"testvaultccy","etag":"W/\"datetime''2021-02-02T13%3A24%3A34.3514747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"amchandnVault1502B","etag":"W/\"datetime''2020-02-15T10%3A38%3A05.4881405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/Vaults/amchandnVault1502B","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"asmaskar0107","etag":"W/\"datetime''2020-07-01T09%3A36%3A37.6662577Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ad9545cf-bef1-4330-a95d-4161a4ec36e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar0107","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar0203","etag":"W/\"datetime''2020-03-02T13%3A48%3A37.6211821Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"94a4ce31-a0c9-42e4-87ce-1058c727b485","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar0203","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar050315","etag":"W/\"datetime''2020-03-05T12%3A54%3A30.002739Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a5aef76d-640e-4b83-912a-2af95837d1ad","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar050315","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar07051","etag":"W/\"datetime''2021-05-07T09%3A04%3A34.841415Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07051","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar07052","etag":"W/\"datetime''2021-05-07T09%3A05%3A08.123179Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07052","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar123","etag":"W/\"datetime''2020-02-27T10%3A36%3A51.7694444Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d271606f-0849-45ad-9cf0-92bc1bd2c9f2","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar123","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar20073","etag":"W/\"datetime''2020-07-30T06%3A58%3A40.9942587Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9801498f-0579-4265-b7e2-3e90220bd271","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"0dae4f5e-a576-47eb-9f2f-fa52aef67cdb","startTimeUtc":"2019-04-26T00:36:52.8303836Z","completionTimeUtc":"2019-04-26T00:38:51.932462Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RegionalRPResourceGroup + kaneta?????? ABC (xyz)_.,-/providers/Microsoft.RecoveryServices/Vaults/TestMoveResourceAcrossSubscription","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RegionalRPResourceGroup/providers/Microsoft.RecoveryServices/Vaults/TestMoveResourceAcrossSubscription"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar20073","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar23071","etag":"W/\"datetime''2020-07-23T10%3A59%3A11.9419674Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"f83b0ce3-27e5-4a94-9a8f-81076d019faf","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar23071","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"BackupPreviewCCYNewVault3","etag":"W/\"datetime''2021-06-08T13%3A28%3A06.144128Z''\"","tags":{"MAB + Used":"true"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewCCYNewVault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"archiveccyvault1","etag":"W/\"datetime''2021-01-21T19%3A30%3A25.5404992Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault891","etag":"W/\"datetime''2021-03-22T06%3A41%3A46.0158817Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtesting2","etag":"W/\"datetime''2021-06-22T07%3A59%3A43.2135046Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"84acee96-299a-4216-8a1a-a1ec352f2796","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtesting2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy","etag":"W/\"datetime''2021-06-22T07%3A50%3A49.10808Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"398523fb-95a9-4858-9575-a00a77451bee","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy3","etag":"W/\"datetime''2021-06-22T08%3A00%3A01.7446193Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"36c479cd-90b8-4908-8307-1f894a532123","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy4","etag":"W/\"datetime''2021-06-22T08%3A00%3A17.1054926Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2636e10f-2d6f-4417-a38c-e2ebce6c8032","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ResourceGuardMadhuDeVault","etag":"W/\"datetime''2021-03-31T09%3A53%3A07.1759321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupadminTestRG/providers/Microsoft.RecoveryServices/vaults/ResourceGuardMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault549","etag":"W/\"datetime''2020-08-17T14%3A25%3A05.1465764Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault549","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ContosoProdVault","etag":"W/\"datetime''2020-07-14T08%3A21%3A08.2353971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ContosoTestVault","etag":"W/\"datetime''2020-07-14T08%3A26%3A48.6660175Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"kosinghacrrBill","etag":"W/\"datetime''2020-10-13T07%3A42%3A55.8236648Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghacrrBill","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"crrbmsrunnercanaryccy","etag":"W/\"datetime''2021-01-21T17%3A52%3A52.2304449Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrbmsrunnercanarywestus/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"dchandrPostGress","etag":"W/\"datetime''2020-08-24T07%3A21%3A07.6338945Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.RecoveryServices/vaults/dchandrPostGress","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"abc","etag":"W/\"datetime''2021-03-15T12%3A58%3A35.2630766Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.RecoveryServices/vaults/abc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"abc","etag":"W/\"datetime''2021-03-15T12%3A59%3A09.1241989Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupRestore/providers/Microsoft.RecoveryServices/vaults/abc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"CRRTestSourceVault","etag":"W/\"datetime''2020-08-21T13%3A22%3A31.7450918Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/CRRTestSourceVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MercuryCrrVault","etag":"W/\"datetime''2020-07-14T11%3A44%3A50.2881311Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"harjairunnervault2","etag":"W/\"datetime''2020-11-25T08%3A07%3A28.9196414Z''\"","tags":{"MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"IaasvmDrillVault","etag":"W/\"datetime''2020-12-18T16%3A43%3A04.6430891Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault405","etag":"W/\"datetime''2021-03-09T12%3A45%3A13.7808663Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ld-kosingha-ccy-vault","etag":"W/\"datetime''2021-02-22T12%3A44%3A17.5376672Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cfacfae2-f372-432b-a489-2ec65f4112db","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault139","etag":"W/\"datetime''2021-04-05T10%3A42%3A09.8621756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MFATest","etag":"W/\"datetime''2020-09-01T11%3A28%3A26.5516544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/MFATest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"TestVaultABC","etag":"W/\"datetime''2020-12-14T17%3A25%3A26.9496069Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/TestVaultABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MadhuDeResourceGuardTest","etag":"W/\"datetime''2021-03-30T15%3A00%3A16.8364847Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/MadhuDeResourceGuardTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"NewVaultForResourceMove","etag":"W/\"datetime''2020-09-07T13%3A00%3A37.7524862Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"9feb1800-9b9c-4747-9b7b-7db7f1d58675","startTimeUtc":"2020-09-07T13:00:15.0401715Z","completionTimeUtc":"2020-09-07T13:00:41.2641365Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"dsmove-bvt-t1","etag":"W/\"datetime''2021-06-04T05%3A09%3A01.7073668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-t1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"dsmove-bvt-test-vault4","etag":"W/\"datetime''2021-05-25T07%3A01%3A53.8538753Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MonjainCcyCrrVault","etag":"W/\"datetime''2020-12-21T08%3A23%3A38.931841Z''\"","tags":{"MAB + Used":"True","Owner":"monjain","DeleteBy":"12-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"muaVault","etag":"W/\"datetime''2021-04-05T12%3A01%3A50.9911114Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muaRG/providers/Microsoft.RecoveryServices/vaults/muaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MUAtesting123","etag":"W/\"datetime''2021-06-22T04%3A44%3A10.7204483Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MUAtestRG/providers/Microsoft.RecoveryServices/vaults/MUAtesting123","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault204","etag":"W/\"datetime''2021-03-16T14%3A40%3A16.2603455Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newonerg/providers/Microsoft.RecoveryServices/vaults/vault204","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"crrbmsrunnercanaryccy","etag":"W/\"datetime''2021-01-21T13%3A05%3A57.9244523Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"CRRTest","etag":"W/\"datetime''2021-01-08T12%3A42%3A51.309726Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/CRRTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"VMPeTest","etag":"W/\"datetime''2020-09-30T13%3A00%3A40.0031654Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3fc3467b-d22a-4d70-8aee-f63d50ba2c3a","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/privateEndpointConnections/pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70","name":"pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70","type":"Microsoft.RecoveryServices/vaults/privateEndpointConnections","location":"centraluseuap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/privateEndpointConnections/pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70"},"privateLinkServiceConnectionState":{"status":"Approved","description":"None","actionsRequired":"None"}}}],"privateEndpointStateForBackup":"Enabled","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"prodVault1307A","etag":"W/\"datetime''2020-07-14T07%3A34%3A17.1481792Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/prodVault1307A","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"testVault1307A","etag":"W/\"datetime''2020-07-14T07%3A36%3A58.4966609Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/testVault1307A","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault821","etag":"W/\"datetime''2021-03-24T18%3A19%3A38.5442205Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault821","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault909","etag":"W/\"datetime''2021-03-26T09%3A09%3A14.6486388Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/vault909","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"surraiccycmkvault1","etag":"W/\"datetime''2021-01-16T11%3A35%3A15.5860607Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surrai-cmk-test-ccy/providers/Microsoft.RecoveryServices/vaults/surraiccycmkvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"surraiccytestvault","etag":"W/\"datetime''2020-12-15T09%3A55%3A34.0240199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"TestLRSVault","etag":"W/\"datetime''2020-12-14T17%3A33%3A44.5567874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestRG/providers/Microsoft.RecoveryServices/vaults/TestLRSVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"TestCmkWLSkip1","etag":"W/\"datetime''2020-05-21T14%3A42%3A27.5065207Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"abc","etag":"W/\"datetime''2020-09-07T14%3A47%3A44.3183485Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"dee7a28a-3f3c-4077-9222-9b810424eb47","startTimeUtc":"2020-09-07T14:47:17.5453479Z","completionTimeUtc":"2020-09-07T14:47:44.2228308Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/abc","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adigupt-new","etag":"W/\"datetime''2021-06-15T10%3A02%3A05.3557572Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/adigupt-new","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dhdjd","etag":"W/\"datetime''2021-06-15T10%3A04%3A36.511016Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/dhdjd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"newOne","etag":"W/\"datetime''2021-07-08T09%3A30%3A07.1235718Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newOne","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"abhinkVault","etag":"W/\"datetime''2020-06-05T06%3A34%3A59.1257744Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/abhinkVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"asmaskar07053","etag":"W/\"datetime''2021-05-07T09%3A06%3A04.912976Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07053","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"asmaskar25051","etag":"W/\"datetime''2021-05-25T09%3A52%3A34.3433191Z''\"","tags":{"name":"standard"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8bbd7383-05a4-40c6-8ae6-b159ae5eb94c","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar25051","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"BackupPreviewECYNewVault","etag":"W/\"datetime''2020-03-27T10%3A30%3A25.6287261Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"bcrgVault","etag":"W/\"datetime''2020-11-03T17%3A18%3A56.5731317Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrgVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adkayeth-afs-bckp","etag":"W/\"datetime''2020-10-20T08%3A01%3A41.9676647Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adkayeth-afs-test","etag":"W/\"datetime''2020-12-11T13%3A50%3A29.708873Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault945","etag":"W/\"datetime''2020-08-17T14%3A25%3A43.5185782Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault945","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"kosinghaBillTest2","etag":"W/\"datetime''2020-10-13T13%3A37%3A46.5637089Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ECYDrill","etag":"W/\"datetime''2019-12-05T07%3A15%3A29.0806564Z''\"","tags":{"MAB + Used":"Yes","Owner":"NirajK;SriramSa","Purpose":"WorkloadBackup-Production-SwaggerTestAutomation"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ECYDrill","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault269","etag":"W/\"datetime''2021-04-05T02%3A53%3A17.6745557Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault269","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault445","etag":"W/\"datetime''2021-04-01T10%3A54%3A03.5918765Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault445","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"WorkloadAzDrillZRS","etag":"W/\"datetime''2021-07-13T07%3A37%3A51.7111819Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/WorkloadAzDrillZRS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZrsVault","etag":"W/\"datetime''2021-07-13T06%3A35%3A38.7517541Z''\"","tags":{"owner":"agarwala","Purpose":"ZonedDownDrillValidation"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gesahootest","etag":"W/\"datetime''2021-03-24T15%3A02%3A32.32287Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"harjairunnervault","etag":"W/\"datetime''2020-11-25T07%3A56%3A42.7302082Z''\"","tags":{"MABUsed":"Yes","isMABUsed":"True"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"KosinghaECYbillTestingVault","etag":"W/\"datetime''2020-10-13T12%3A12%3A24.5007851Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ld-kosingha-ecy-vault","etag":"W/\"datetime''2020-11-10T19%3A15%3A23.0544636Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ECYResourceMove","etag":"W/\"datetime''2020-09-07T13%3A33%3A30.191312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/ECYResourceMove","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"CRRTestTargetVault","etag":"W/\"datetime''2020-08-21T13%3A25%3A40.5894518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/CRRTestTargetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"MadhuDeTestVM","etag":"W/\"datetime''2020-12-14T17%3A41%3A21.4302044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.RecoveryServices/vaults/MadhuDeTestVM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-apitest-s1","etag":"W/\"datetime''2021-06-11T09%3A37%3A55.6238725Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/Vaults/dsmove-bvt-apitest-s1","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"eastus2euap","name":"dsmove-bvt-s1","etag":"W/\"datetime''2021-06-11T09%3A36%3A39.760365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-s1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-s10","etag":"W/\"datetime''2021-06-16T12%3A54%3A53.7114477Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-s10","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault1","etag":"W/\"datetime''2021-05-18T13%3A08%3A58.2261383Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault2","etag":"W/\"datetime''2021-05-25T06%3A25%3A33.7205872Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault3","etag":"W/\"datetime''2021-05-25T07%3A00%3A18.8457965Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-vault5","etag":"W/\"datetime''2021-06-04T02%3A48%3A50.0887106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-vault5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"AutoUpdateTestMARS","etag":"W/\"datetime''2021-05-21T10%3A47%3A06.1117132Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/AutoUpdateTestMARS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraicmkecyvault1","etag":"W/\"datetime''2021-01-19T12%3A24%3A38.4533018Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c97ac6b7-fe57-4f3e-8b56-3e9d9605690f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecycmkvault3011","etag":"W/\"datetime''2021-03-01T14%3A50%3A08.6573876Z''\"","tags":{"Owner":"surrai","DeleteBy":"03-2022","Purpose":"Testing","AutoShutdown":"No","MAB + Used":"Yes"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1ae4fa42-1608-4993-8caf-6c3c59d5b0c6","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecypevault","etag":"W/\"datetime''2021-02-11T16%3A01%3A47.5113239Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"eee97ec2-b109-46cc-9502-ff959111852f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/privateEndpointConnections/surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be","name":"surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be","type":"Microsoft.RecoveryServices/vaults/privateEndpointConnections","location":"eastus2euap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/privateEndpointConnections/surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be"},"privateLinkServiceConnectionState":{"status":"Approved","description":"None","actionsRequired":"None"}}}],"privateEndpointStateForBackup":"Enabled","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecytestvault2","etag":"W/\"datetime''2021-02-22T13%3A02%3A15.9960406Z''\"","tags":{"MAB + Used":"Yes","MABUsed":"Yes"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ab39e437-680b-4905-bdce-4655ac7967e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault940","etag":"W/\"datetime''2021-04-01T10%3A48%3A34.0615736Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrgnew/providers/Microsoft.RecoveryServices/vaults/vault940","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"arvindtestvault","etag":"W/\"datetime''2020-07-09T23%3A38%3A38.0140589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"arvindzrstest2","etag":"W/\"datetime''2020-07-09T23%3A57%3A58.0530635Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindzrstest2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"suresht-zrstest","etag":"W/\"datetime''2020-07-09T23%3A49%3A27.1859757Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VihariPZRSBugBash","etag":"W/\"datetime''2020-07-09T23%3A40%3A04.2077741Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZRSTesingCV","etag":"W/\"datetime''2020-07-09T23%3A43%3A53.7557807Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZZrsVault","etag":"W/\"datetime''2021-06-29T06%3A50%3A31.265465Z''\"","identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"mayaggarrmvault","etag":"W/\"datetime''2021-07-12T07%3A59%3A01.4892403Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"81b6eded-125e-4723-8cd3-f8890cffdbb0","startTimeUtc":"2021-07-12T07:58:37.5000192Z","completionTimeUtc":"2021-07-12T07:59:01.4393009Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggar/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-vault","etag":"W/\"datetime''2021-06-14T19%3A11%3A59.0204753Z''\"","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-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-vault2","etag":"W/\"datetime''2021-06-15T04%3A40%3A50.4746212Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"asmitttestvault","etag":"W/\"datetime''2021-03-30T11%3A33%3A40.9457075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmitttest/providers/Microsoft.RecoveryServices/vaults/asmitttestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vault6ilaqmfbtio","etag":"W/\"datetime''2021-06-17T06%3A29%3A14.1870516Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2axfrllddcexsd7lf5jt2kizmwln26tved5xpd3yjdmvw37lssrbffyzev42zfgop/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ilaqmfbtio","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultciyzoepyvcc","etag":"W/\"datetime''2021-07-13T08%3A01%3A08.3863453Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk5pb5p7jqch","etag":"W/\"datetime''2021-07-13T08%3A04%3A14.4667487Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk5pb5p7jqch","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultr3yegpfmnyy","etag":"W/\"datetime''2021-06-17T06%3A34%3A06.3089024Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault66svycrqakh","etag":"W/\"datetime''2021-06-21T06%3A20%3A01.1602578Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultviltn3z3hdn","etag":"W/\"datetime''2021-06-17T06%3A29%3A13.6315248Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdpjnygfyazfuwkslmu5qsjniz7pe7hpn7gw5c2sdejk37okvpcjt25mlmigjr4ruz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultviltn3z3hdn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T08%3A53%3A22.6566167Z''\"","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-vault7vgbsde3rvo","etag":"W/\"datetime''2021-07-13T08%3A05%3A57.7579639Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.RecoveryServices/vaults/clitest-vault7vgbsde3rvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu2sa3i6fren","etag":"W/\"datetime''2021-07-13T08%3A07%3A35.9303081Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtmrta7e2n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu2sa3i6fren","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxvz7kzd22fq","etag":"W/\"datetime''2021-06-18T08%3A02%3A23.1712616Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo5jjxrimsllok4xd7vkruddg7h2yvde7elfc5l4ee7fz6wm6jievftxow7tsa2lej/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxvz7kzd22fq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7oaiaxnd3uq","etag":"W/\"datetime''2021-07-13T08%3A33%3A45.980739Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4uqtshko5om","etag":"W/\"datetime''2021-06-17T06%3A29%3A13.724613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpuiuax7tzaks7rbrwy3cmj4mni6f6oovxhj2cyaoz5vwpfjngzt7jzcemguuezeix/providers/Microsoft.RecoveryServices/vaults/clitest-vault4uqtshko5om","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt5rhogebbou","etag":"W/\"datetime''2021-07-13T08%3A01%3A07.9449249Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3uww3nsnehj","etag":"W/\"datetime''2021-06-15T05%3A59%3A50.4912309Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtb6fpqzldd/providers/Microsoft.RecoveryServices/vaults/clitest-vault3uww3nsnehj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaults5zqycuhpfa","etag":"W/\"datetime''2021-06-17T06%3A33%3A55.780926Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwurxwm3wip3","etag":"W/\"datetime''2021-06-18T06%3A28%3A05.638515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw334cvoozs2gpptqdii6smyw4i2kkx3wz6gt2onxu6pddwpdkky5py7nhgu4tl4ud/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwurxwm3wip3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcufv3xkmajq","etag":"W/\"datetime''2021-06-17T07%3A56%3A20.3139079Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgykrgkyzkxgcik32u5sbwsjy4ttyfd5gcpqotrtrdskgd3hwukphzxjxgulnl6mkdu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcufv3xkmajq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh4sgz3r4ht","etag":"W/\"datetime''2021-06-18T09%3A37%3A35.4844417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymouom2j5x4w5rdeaywgsdw7pbfwpqpgphgxoa6lht6ofz46r547txy6vkjtuorvm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh4sgz3r4ht","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4stgkxrddm","etag":"W/\"datetime''2021-06-17T07%3A56%3A30.3484167Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz74trrkv7ejfvfrng7ob4kno75fopjy4jzqfn6qj5p5bfjza5bcnomao4yqmpmj7u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4stgkxrddm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3mqxpoklqcy","etag":"W/\"datetime''2021-06-17T06%3A29%3A14.0569283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"vault947","etag":"W/\"datetime''2021-06-11T12%3A26%3A45.9361833Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"test-v1","etag":"W/\"datetime''2021-04-26T11%3A30%3A37.3698706Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/test-v1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"sakaarcsstest","etag":"W/\"datetime''2020-04-01T05%3A59%3A09.528941Z''\"","tags":{"MAB + Used":"yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarcsstest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"sakaarhotfixtest","etag":"W/\"datetime''2020-07-25T08%3A40%3A30.109341Z''\"","tags":{"MAB + Used":"Yes","isMABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarhotfixtest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault735","etag":"W/\"datetime''2021-03-15T17%3A25%3A28.7727957Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedensouth","name":"mabcms","etag":"W/\"datetime''2021-06-03T06%3A44%3A16.0084984Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcms","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedensouth","name":"newRegionVal","etag":"W/\"datetime''2021-06-02T05%3A01%3A19.6255744Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/newRegionVal","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedencentral","name":"mabcmtesting","etag":"W/\"datetime''2021-06-03T06%3A36%3A44.1678523Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcmtesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '113633' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Jul 2021 08:59:55 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: + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + - 332708fd-fae8-414d-80e8-dc52b00c1333 + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/adds/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:59:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/CmkTestSkipWL/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 08:59:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/test/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/vault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testZRSValue/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502A/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.RecoveryServices/vaults/dosvaulttesting/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/wusKosinghaVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/wuskosignhavault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultbug/providers/Microsoft.RecoveryServices/vaults/vaultbug/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;wusvmrg;wuskosinghavm3/protectedItems/VM;iaasvmcontainerv2;wusvmrg;wuskosinghavm3","name":"VM;iaasvmcontainerv2;wusvmrg;wuskosinghavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"wuskosinghavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wusvmrg/providers/Microsoft.Compute/virtualMachines/wuskosinghavm3","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-07-12T15:32:58.1612735Z","protectedItemDataId":"281475983252120","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;wusvmrg;wuskosinghavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wusvmrg/providers/Microsoft.Compute/virtualMachines/wuskosinghavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:33:01.2601013Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1872' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/ABCTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/test1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/TestVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/testVault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XXXTestVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XYZTestVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/TesCRRABC/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/VMTestvault55/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/testVaulteus/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrg/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gegRG/providers/Microsoft.RecoveryServices/vaults/Testgegpolicy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","name":"VM;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"euskosinghaTestVm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/euskosinghaTestVm2","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-07-12T15:41:24.8891272Z","protectedItemDataId":"932509007082163525","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/euskosinghaTestVm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:41:27.9792242Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","name":"VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaCRRTestVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaCRRTestVM1","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-07-12T15:41:25.9404342Z","protectedItemDataId":"932509006937819503","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaCRRTestVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:41:29.2136367Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting/protectedItems/VM;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","name":"VM;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaIaasVMTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghIAASTest/providers/Microsoft.Compute/virtualMachines/kosinghaIaasVMTesting","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-07-12T15:44:23.1445331Z","protectedItemDataId":"932509006629252539","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghIAASTest/providers/Microsoft.Compute/virtualMachines/kosinghaIaasVMTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:44:25.9645904Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5891' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","name":"VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM","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-07-12T16:38:54.6225031Z","protectedItemDataId":"932350676750930735","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:38:57.762188Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1933' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/euskosinghavault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2/protectedItems/VM;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","name":"VM;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaTestVM2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTestVMRG/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM2","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-07-12T15:36:49.6821171Z","protectedItemDataId":"932262716479331247","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTestVMRG/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:36:52.80637Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1967' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuTestRG/providers/Microsoft.RecoveryServices/vaults/TestVaultABC/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pikumarCrashJob/providers/Microsoft.RecoveryServices/vaults/mabcrashjobtesting/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault219/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault854/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PublicpreviewRG/providers/Microsoft.RecoveryServices/vaults/PublicPreviewVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/ResourceGuardTesting/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-restore-disk-rg/providers/Microsoft.RecoveryServices/vaults/deletevault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/deleteme/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shjoshi;my-vm/protectedItems/VM;iaasvmcontainerv2;shjoshi;my-vm","name":"VM;iaasvmcontainerv2;shjoshi;my-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"My-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/My-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":"2021-07-12T19:43:58.0393634Z","protectedItemDataId":"974177814","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shjoshi;my-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/My-vm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupPolicies/My-policy","policyName":"My-policy","lastRecoveryPoint":"2021-07-12T19:44:02.0523008Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shjoshi;shreyansh-machine/protectedItems/VM;iaasvmcontainerv2;shjoshi;shreyansh-machine","name":"VM;iaasvmcontainerv2;shjoshi;shreyansh-machine","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"Shreyansh-machine","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/Shreyansh-machine","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-07-12T15:08:06.8425749Z","protectedItemDataId":"1541352777","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shjoshi;shreyansh-machine","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/Shreyansh-machine","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:08:10.0011378Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3592' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault-2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/Mycheckingvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sumittestsxxbbdwvakp2q/providers/Microsoft.RecoveryServices/vaults/TesSumit5-managedrsvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingCrrLrs/providers/Microsoft.RecoveryServices/vaults/TestingCRRLrs/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvault/providers/Microsoft.RecoveryServices/vaults/testvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;TLSTEST;TLSTest/protectedItems/VM;iaasvmcontainerv2;TLSTEST;TLSTest","name":"VM;iaasvmcontainerv2;TLSTEST;TLSTest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"TLSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.Compute/virtualMachines/TLSTest","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-07-12T19:35:39.6258294Z","protectedItemDataId":"281475504455340","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;TLSTEST;TLSTest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.Compute/virtualMachines/TLSTest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupPolicies/DailyPolicy-kmys2f5l","policyName":"DailyPolicy-kmys2f5l","lastRecoveryPoint":"2021-07-12T19:35:42.2531Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1767' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-2/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-2","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-2","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":"2021-06-09T17:10:17.6736223Z","protectedItemDataId":"1949919164","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-2","policyId":"","policyName":"","lastRecoveryPoint":"2021-06-09T17:10:20.9495072Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK","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-07-12T17:07:05.7468853Z","protectedItemDataId":"1468227706","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T17:08:18.7398351Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3421' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-3/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-3","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-3","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-07-12T20:36:00.6898743Z","protectedItemDataId":"932966404226959648","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:36:03.8178063Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1817' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-4/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-4","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-4","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-4","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-07-12T14:36:09.894337Z","protectedItemDataId":"80838424","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T14:36:13.7587562Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1806' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:00: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-5/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-5","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-5","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-5","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-07-12T18:09:28.8632353Z","protectedItemDataId":"933107141561712724","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-5","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-5","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T18:09:32.1188927Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1817' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-5/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-6/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-9/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestMadhuDeRG/providers/Microsoft.RecoveryServices/vaults/TestMadhuDeVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPE/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPW/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/prnookal-aueast/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanase_group;akkanase/protectedItems/VM;iaasvmcontainerv2;akkanase_group;akkanase","name":"VM;iaasvmcontainerv2;akkanase_group;akkanase","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":"akkanase","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.Compute/virtualMachines/akkanase","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-07-12T17:39:37.396353Z","protectedItemDataId":"5639016908855234954","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanase_group;akkanase","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.Compute/virtualMachines/akkanase","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T17:39:40.2625846Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2001' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rg1;jakavetvm2/protectedItems/VM;iaasvmcontainerv2;rg1;jakavetvm2","name":"VM;iaasvmcontainerv2;rg1;jakavetvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"jakavetVM2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/jakavetVM2","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-07-12T12:31:23.3295897Z","protectedItemDataId":"87962247001914","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;rg1;jakavetvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/jakavetVM2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupPolicies/DailyPolicy-kqbpndhz","policyName":"DailyPolicy-kqbpndhz","lastRecoveryPoint":"2021-07-12T12:31:27.5320821Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1744' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinkrg;jakavetrg/protectedItems/VM;iaasvmcontainerv2;abhinkrg;jakavetrg","name":"VM;iaasvmcontainerv2;abhinkrg;jakavetrg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"jakavetRG","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/jakavetRG","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-07-12T19:31:50.34115Z","protectedItemDataId":"193515774031053","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinkrg;jakavetrg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/jakavetRG","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:31:53.4389342Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2/protectedItems/VM;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","name":"VM;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sakaarhotfix2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Compute/virtualMachines/sakaarhotfix2","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"193515390883961","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Compute/virtualMachines/sakaarhotfix2","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3105' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Vsarg-new/providers/Microsoft.RecoveryServices/vaults/vsarg-rsv/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/MUADemoVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newMUAVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newvault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/MUADemoVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/muaVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault4/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/hakavetMUAVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/wcusvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupAdminMadhudeRG/providers/Microsoft.RecoveryServices/vaults/MadhuDeMFATestWCUS/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrossTenantMadhudeRG/providers/Microsoft.RecoveryServices/vaults/CrossTenantVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mfa_mua_rg/providers/Microsoft.RecoveryServices/vaults/mfamuarsvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGuardTesting/providers/Microsoft.RecoveryServices/vaults/resourceGuardTesting/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsMuaMfaRg/providers/Microsoft.RecoveryServices/vaults/UtsMuaVault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WCUSMadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WCUSMadhuDeVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;viveksisql1;viveksisql1/protectedItems/VM;iaasvmcontainerv2;viveksisql1;viveksisql1","name":"VM;iaasvmcontainerv2;viveksisql1;viveksisql1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"viveksisql1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Compute/virtualMachines/viveksisql1","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-07-12T20:03:09.1382648Z","protectedItemDataId":"7660728519602961543","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;viveksisql1;viveksisql1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Compute/virtualMachines/viveksisql1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:03:18.0127714Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1875' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM/protectedItems/VM;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","name":"VM;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"MadhuCrrTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCrrTestRG/providers/Microsoft.Compute/virtualMachines/MadhuCrrTestVM","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-07-12T19:37:28.4674346Z","protectedItemDataId":"7660693336963666473","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCrrTestRG/providers/Microsoft.Compute/virtualMachines/MadhuCrrTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:37:31.7418845Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1888' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrg/providers/Microsoft.RecoveryServices/vaults/zakVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:01:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;uksstamptesting;ukskosinghavm/protectedItems/VM;iaasvmcontainerv2;uksstamptesting;ukskosinghavm","name":"VM;iaasvmcontainerv2;uksstamptesting;ukskosinghavm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"uksKosinghaVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.Compute/virtualMachines/uksKosinghaVM","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-07-12T18:33:51.6839112Z","protectedItemDataId":"8565864083995367194","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;uksstamptesting;ukskosinghavm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.Compute/virtualMachines/uksKosinghaVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T18:33:54.9924989Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1895' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB/protectedItems/VM;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","name":"VM;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaUKSTest-ukw-10GB","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Compute/virtualMachines/kosinghaUKSTest-ukw-10GB","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-07-12T19:34:48.1563262Z","protectedItemDataId":"8111088483869065758","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Compute/virtualMachines/kosinghaUKSTest-ukw-10GB","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupPolicies/DailyPolicy-kn4m00cu","policyName":"DailyPolicy-kn4m00cu","lastRecoveryPoint":"2021-07-12T19:34:51.0246117Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1957' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgKRC-otds-rraj/providers/Microsoft.RecoveryServices/vaults/vault108/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/swtestvault100/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR/providers/Microsoft.RecoveryServices/vaults/hiagaCRRvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.RecoveryServices/vaults/abhinkszw/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;RGPETEST;VMPeTest1/protectedItems/VM;iaasvmcontainerv2;RGPETEST;VMPeTest1","name":"VM;iaasvmcontainerv2;RGPETEST;VMPeTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"VMPeTest1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.Compute/virtualMachines/VMPeTest1","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-07-12T23:06:51.06571Z","protectedItemDataId":"52777393879077","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;RGPETEST;VMPeTest1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.Compute/virtualMachines/VMPeTest1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T23:06:54.5033338Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1783' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","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":"ldkosignha32","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosignha32","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-27T20:39:29.5296808Z","protectedItemDataId":"17592761839680","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosignha32","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti/protectedItems/VM;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","name":"VM;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ldkosneeti","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosneeti","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-27T20:38:53.5773189Z","protectedItemDataId":"17592663061130","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosneeti","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-27T20:38:58.2619668Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3949' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar0107/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar0203/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar050315/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07051/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07052/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar123/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar20073/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar23071/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewCCYNewVault3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","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":"archsqlccyvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm1","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-07-13T05:34:30.9771057Z","protectedItemDataId":"17592741580724","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:34:34.5427367Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2069' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4/protectedItems/VM;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","name":"VM;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"archsqlccyvm4","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm4","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-07-12T19:35:07.3184603Z","protectedItemDataId":"70370698966816","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:35:11.2114494Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1897' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtesting2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy4/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupadminTestRG/providers/Microsoft.RecoveryServices/vaults/ResourceGuardMadhuDeVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault549/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"archsqlccyvm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","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-07-12T18:09:01.8179778Z","protectedItemDataId":"70369333980246","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T18:09:05.3606036Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1901' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoTestVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghacrrBill/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrbmsrunnercanarywestus/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.RecoveryServices/vaults/dchandrPostGress/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupRestore/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/CRRTestSourceVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallavm1_group;gaallavm1/protectedItems/VM;iaasvmcontainerv2;gaallavm1_group;gaallavm1","name":"VM;iaasvmcontainerv2;gaallavm1_group;gaallavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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":"gaallaVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallaVM1_group/providers/Microsoft.Compute/virtualMachines/gaallaVM1","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":"2021-03-11T11:40:58.8973948Z","protectedItemDataId":"140739491633921","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallavm1_group;gaallavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallaVM1_group/providers/Microsoft.Compute/virtualMachines/gaallaVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-25T21:40:12.9822444Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2342' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archhanavm1/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archhanavm1","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archhanavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ArchHanaVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/ArchHanaVM1","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-07-13T02:33:21.3152141Z","protectedItemDataId":"52778690893293","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/ArchHanaVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:33:25.1677645Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","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":"backuptesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/backuptesting","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-07-13T02:34:40.3970576Z","protectedItemDataId":"52778162276529","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/backuptesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:34:43.2463085Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaBillTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaBillTest","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-07-13T02:38:44.4744731Z","protectedItemDataId":"52776782651421","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaBillTest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:38:51.3414655Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400003,"title":"RestoreOperationFailed","message":"Restore + failed with an internal error.","recommendations":["Please retry the operation + in a few minutes. If the problem persists, please contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaVm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaVm1","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-07-13T02:39:00.8007104Z","protectedItemDataId":"52777567164889","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaVm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:39:03.3883906Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","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":"kosinghavm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm2","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-05-19T02:35:41.5155903Z","protectedItemDataId":"52777155670626","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-05-19T02:35:44.1583667Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","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":"kosinghavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm3","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-07-13T02:31:59.7080571Z","protectedItemDataId":"52777797998217","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:32:02.7766988Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '12273' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400199,"title":"VMCreationTimeOutStorageErrorV2","message":"Create + VM took very long time and got timed out","recommendations":["Please retry + the operation after some time. If problem persists, please contact Microsoft + support."]}]}},"friendlyName":"dg123","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/dg123","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-07-12T12:37:18.7493514Z","protectedItemDataId":"17592941450352","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/dg123","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-06T15:19:30.3189613Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2013' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd/protectedItems/VM;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","name":"VM;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","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":"ld-kosingha-30-hdd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ld-kosingha-30-hdd","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":"2021-01-27T23:40:58.201612Z","protectedItemDataId":"17593919300788","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ld-kosingha-30-hdd","policyId":"","policyName":"","lastRecoveryPoint":"2021-01-27T23:41:01.189038Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1932' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win/protectedItems/VM;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","name":"VM;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","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":"ld-kosingha-ccy-8tb-hdd-win","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ccy-8tb-hdd-win","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400240,"title":"IaasVmHealthYellowDefault","message":"Backup + pre-checks for this virtual machine completed with warnings.","recommendations":["There + are no recommendations available at the moment to ensure successful backups. + Check Backup pre-check status after the next backup and perform any suggested + or required actions"]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-07-12T19:40:49.8493207Z","protectedItemDataId":"70370189974668","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ccy-8tb-hdd-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupPolicies/DailyPolicy-kn4grij7","policyName":"DailyPolicy-kn4grij7","lastRecoveryPoint":"2021-07-05T20:05:27.1175874Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2431' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/MFATest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/TestVaultABC/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/MadhuDeResourceGuardTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-t1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault4/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1/protectedItems/VM;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","name":"VM;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","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"]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"monjainccycrrvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.Compute/virtualMachines/monjainccycrrvm1","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":"2021-07-12T07:56:12.0506615Z","protectedItemDataId":"1680610845","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.Compute/virtualMachines/monjainccycrrvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-27T18:08:41.8479408Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2399' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muaRG/providers/Microsoft.RecoveryServices/vaults/muaVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MUAtestRG/providers/Microsoft.RecoveryServices/vaults/MUAtesting123/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newonerg/providers/Microsoft.RecoveryServices/vaults/vault204/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/CRRTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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-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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/prodVault1307A/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/testVault1307A/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/vault821/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/vault909/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surrai-cmk-test-ccy/providers/Microsoft.RecoveryServices/vaults/surraiccycmkvault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm/protectedItems/VM;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","name":"VM;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400003,"title":"RestoreOperationFailed","message":"Restore + failed with an internal error.","recommendations":["Please retry the operation + in a few minutes. If the problem persists, please contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400199,"title":"VMCreationTimeOutStorageErrorV2","message":"Create + VM took very long time and got timed out","recommendations":["Please retry + the operation after some time. If problem persists, please contact Microsoft + support."]}]}},"friendlyName":"surraicrrcyyvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.Compute/virtualMachines/surraicrrcyyvm","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-07-12T19:38:22.656102Z","protectedItemDataId":"17593165773223","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.Compute/virtualMachines/surraicrrcyyvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-30T19:37:26.1293818Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2411' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestRG/providers/Microsoft.RecoveryServices/vaults/TestLRSVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghav1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/kosinghav1","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-28T00:36:17.0009184Z","protectedItemDataId":"717172572","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/kosinghav1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-28T00:36:19.3643683Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows/protectedItems/VM;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","name":"VM;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"vikotturA2Windows","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabpostgrestesting/providers/Microsoft.Compute/virtualMachines/vikotturA2Windows","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-07-13T00:34:15.4136379Z","protectedItemDataId":"1375314921","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabpostgrestesting/providers/Microsoft.Compute/virtualMachines/vikotturA2Windows","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:34:18.3448414Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm/protectedItems/VM;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","name":"VM;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surrairecoveryvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.Compute/virtualMachines/surrairecoveryvm","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-07-13T00:38:34.4758081Z","protectedItemDataId":"1503150265","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.Compute/virtualMachines/surrairecoveryvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:38:37.3151895Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmkvm3012","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3012","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-07-13T00:32:23.597313Z","protectedItemDataId":"934321120","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3012","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:32:26.7347206Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ZRSBugBash;asdasdasd/protectedItems/VM;iaasvmcontainerv2;ZRSBugBash;asdasdasd","name":"VM;iaasvmcontainerv2;ZRSBugBash;asdasdasd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"asdasdasd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/asdasdasd","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-07-13T00:33:45.6132644Z","protectedItemDataId":"297071189","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ZRSBugBash;asdasdasd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/asdasdasd","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:33:49.3604403Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '9319' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ecyzonedowndrill;azdrill1/protectedItems/VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill1","name":"VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"azdrill1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill1","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-07-13T00:39:39.3477069Z","protectedItemDataId":"17594289799946","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ecyzonedowndrill;azdrill1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:39:42.0499899Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallarg;crrvm/protectedItems/VM;iaasvmcontainerv2;gaallarg;crrvm","name":"VM;iaasvmcontainerv2;gaallarg;crrvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"crrvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrvm","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-22T00:37:40.199217Z","protectedItemDataId":"17592342705240","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallarg;crrvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrvm","policyId":"","policyName":"","lastRecoveryPoint":"2020-12-22T00:37:44.0545564Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3399' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/adigupt-new/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/dhdjd/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newOne/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/abhinkVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07053/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar25051/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinitrg;mabagenttestvm/protectedItems/VM;iaasvmcontainerv2;abhinitrg;mabagenttestvm","name":"VM;iaasvmcontainerv2;abhinitrg;mabagenttestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"MABAgentTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Compute/virtualMachines/MABAgentTestVM","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-07-12T20:40:04.3908883Z","protectedItemDataId":"52777648213067","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinitrg;mabagenttestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Compute/virtualMachines/MABAgentTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:40:09.2808122Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1883' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrgVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ecyzonedowndrill;azdrill3/protectedItems/VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill3","name":"VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"azdrill3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill3","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-07-12T19:38:26.6495087Z","protectedItemDataId":"35185671837196","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true},"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ecyzonedowndrill;azdrill3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupPolicies/DailyPolicy2","policyName":"DailyPolicy2","lastRecoveryPoint":"2021-07-12T19:38:31.3489943Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1935' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-test/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault945/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;crrtest;crrtargetvm/protectedItems/VM;iaasvmcontainerv2;crrtest;crrtargetvm","name":"VM;iaasvmcontainerv2;crrtest;crrtargetvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"CrrTargetVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrrTest/providers/Microsoft.Compute/virtualMachines/CrrTargetVM","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-21T23:40:28.9573261Z","protectedItemDataId":"1245944172","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;crrtest;crrtargetvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrrTest/providers/Microsoft.Compute/virtualMachines/CrrTargetVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-21T23:41:00.3045889Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1811' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ECYDrill/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault269/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault445/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/WorkloadAzDrillZRS/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":380020,"title":"ExtensionVCRedistInstallationFailure","message":"Snapshot + operation failed due to failure in installation of Visual C++ Redistributable + for Visual Studio 2013.","recommendations":["Please install Visual C++ Redistributable + for Visual Studio 2013. If you are observing issues with installation or if + it is already installed and you are observing this error, please restart the + VM to clean installation issues."]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T07:26:58.9363345Z","protectedItemDataId":"123146583354166","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T07:57:10.040157Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn2","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-07-13T07:29:21.2079752Z","protectedItemDataId":"123146248280396","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:04:59.8716357Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn3","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-07-13T07:29:31.0939837Z","protectedItemDataId":"123147171439709","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T07:29:35.4847462Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5947' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahooblob;testgeesahoovm/protectedItems/VM;iaasvmcontainerv2;gesahooblob;testgeesahoovm","name":"VM;iaasvmcontainerv2;gesahooblob;testgeesahoovm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgeesahoovm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.Compute/virtualMachines/testgeesahoovm","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184471494762","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahooblob;testgeesahoovm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.Compute/virtualMachines/testgeesahoovm","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1299' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;aarifdomain;kosinghavm1/protectedItems/VM;iaasvmcontainerv2;aarifdomain;kosinghavm1","name":"VM;iaasvmcontainerv2;aarifdomain;kosinghavm1","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":"kosinghavm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.Compute/virtualMachines/kosinghavm1","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-07-12T22:08:30.6768933Z","protectedItemDataId":"87962882385959","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;aarifdomain;kosinghavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.Compute/virtualMachines/kosinghavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-11T22:03:24.2724508Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallarg;crrnewvm/protectedItems/VM;iaasvmcontainerv2;gaallarg;crrnewvm","name":"VM;iaasvmcontainerv2;gaallarg;crrnewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"crrnewvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrnewvm","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-21T22:05:43.1920926Z","protectedItemDataId":"87962573325455","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallarg;crrnewvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrnewvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-21T22:05:46.176328Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3919' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd/protectedItems/VM;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","name":"VM;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ld-kosingha-ecy-8tb-stssd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ecy-8tb-stssd","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-07-13T05:07:06.0165965Z","protectedItemDataId":"35186289976282","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ecy-8tb-stssd","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:07:10.3927266Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2030' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/ECYResourceMove/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/CRRTestTargetVault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.RecoveryServices/vaults/MadhuDeTestVM/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:03: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-apitest-s1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-s1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-s10/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault1/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault3/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-vault5/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/AutoUpdateTestMARS/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmktestvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmktestvm1","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-07-12T22:10:11.6224104Z","protectedItemDataId":"52778566018387","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmktestvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T22:10:14.2081888Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1897' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmkvm3011","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3011","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-07-13T00:39:58.6324191Z","protectedItemDataId":"724401492","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3011","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:40:02.0345112Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1891' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1/protectedItems/VM;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","name":"VM;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraitestecyvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraitestecyvm1","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-07-13T01:32:07.227026Z","protectedItemDataId":"17593342647707","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraitestecyvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:32:10.7430408Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1900' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2/protectedItems/VM;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","name":"VM;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraiecytestvm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraiecytestvm2","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-07-12T23:10:01.4371359Z","protectedItemDataId":"70370664469282","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraiecytestvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T23:10:04.8110241Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1907' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrgnew/providers/Microsoft.RecoveryServices/vaults/vault940/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindtestvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindzrstest2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","name":"VM;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","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":"sureshtvmzrs","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/sureshtvmzrs","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-07-12T09:37:14.7227392Z","protectedItemDataId":"35185043494290","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/sureshtvmzrs","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:37:17.2127915Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2007' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;viharipzrstesting/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;viharipzrstesting","name":"VM;iaasvmcontainerv2;zrsbugbash;viharipzrstesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"VihariPZRSTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/VihariPZRSTesting","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-07-12T09:31:35.9683441Z","protectedItemDataId":"202658094","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;viharipzrstesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/VihariPZRSTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:32:33.8515535Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1889' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinkrg;zrstesting/protectedItems/VM;iaasvmcontainerv2;abhinkrg;zrstesting","name":"VM;iaasvmcontainerv2;abhinkrg;zrstesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ZRSTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/ZRSTesting","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-07-12T15:36:21.1559422Z","protectedItemDataId":"17593788754455","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinkrg;zrstesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/ZRSTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupPolicies/ZRSPPP","policyName":"ZRSPPP","lastRecoveryPoint":"2021-07-12T15:36:25.51482Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1805' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;ztestvm/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;ztestvm","name":"VM;iaasvmcontainerv2;zrsbugbash;ztestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ZTestVm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/ZTestVm","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-07-12T09:36:22.688144Z","protectedItemDataId":"52777554480039","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;ztestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/ZTestVm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:36:25.4780487Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1807' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema-rg;akneema-vm/protectedItems/VM;iaasvmcontainerv2;akneema-rg;akneema-vm","name":"VM;iaasvmcontainerv2;akneema-rg;akneema-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Compute/virtualMachines/akneema-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":"2021-07-13T05:05:22.2634589Z","protectedItemDataId":"70368884915590","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akneema-rg;akneema-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Compute/virtualMachines/akneema-vm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:05:25.351469Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1809' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault2/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmitttest/providers/Microsoft.RecoveryServices/vaults/asmitttestvault/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2axfrllddcexsd7lf5jt2kizmwln26tved5xpd3yjdmvw37lssrbffyzev42zfgop/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ilaqmfbtio/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09:03: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3/protectedItems/VM;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","name":"VM;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm5eob3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","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-07-13T08:05:52.5577592Z","protectedItemDataId":"70369028051695","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:05:56.0570434Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2456' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk5pb5p7jqch/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r/protectedItems/VM;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","name":"VM;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmh7a4r","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.Compute/virtualMachines/clitest-vmh7a4r","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-07-12T16:37:15.066406Z","protectedItemDataId":"70370221429489","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.Compute/virtualMachines/clitest-vmh7a4r","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:37:17.7829359Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2362' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia/protectedItems/VM;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","name":"VM;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmcojia","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.Compute/virtualMachines/clitest-vmcojia","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T06:24:01.2996298Z","protectedItemDataId":"2617328","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.Compute/virtualMachines/clitest-vmcojia","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T06:24:05.2187101Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2356' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdpjnygfyazfuwkslmu5qsjniz7pe7hpn7gw5c2sdejk37okvpcjt25mlmigjr4ruz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultviltn3z3hdn/backupProtectedItems?api-version=2021-01-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: + - Tue, 13 Jul 2021 09: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"52777897770932","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1988' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"52777897770932","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1988' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 09:03: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/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '45' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '44' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '43' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '42' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '41' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '40' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '39' + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '38' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"InProgress","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '37' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/97d9ecf0-2e70-4968-8935-2da4008d028d?api-version=2021-01-01 + response: + body: + string: '{"id":"97d9ecf0-2e70-4968-8935-2da4008d028d","name":"97d9ecf0-2e70-4968-8935-2da4008d028d","status":"Succeeded","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"2021-07-13T09:03:43.2669046Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5f3db7a3-1d36-473c-aeee-fdd16f674c32"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '36' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5f3db7a3-1d36-473c-aeee-fdd16f674c32?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5f3db7a3-1d36-473c-aeee-fdd16f674c32","name":"5f3db7a3-1d36-473c-aeee-fdd16f674c32","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.1135988S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2021-07-13T09:03:43.2669046Z","endTime":"2021-07-13T09:03:54.3805034Z","activityId":"374e84c6-e3b9-11eb-bc1e-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '953' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '73' + 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: + - --backup-management-type --workload-type -g -v -c -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"52777897770932","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":"","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1743' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"52777897770932","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":"","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1743' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:03: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: + - '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 + Content-Length: + - '0' + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 09:03: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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '138' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '137' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '135' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '134' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '133' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '130' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '129' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '128' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '126' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '124' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '123' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09:04: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: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '113' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '112' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '111' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '110' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '109' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 09: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: + - '108' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 + response: + body: + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:13 GMT + - Tue, 13 Jul 2021 09:04: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/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '107' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6214,45 +28396,52 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:14 GMT + - Tue, 13 Jul 2021 09: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/operationResults/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '106' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6261,45 +28450,52 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:15 GMT + - Tue, 13 Jul 2021 09:04: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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '105' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6308,45 +28504,52 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:16 GMT + - Tue, 13 Jul 2021 09:04: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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '104' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6355,41 +28558,52 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/e5b38658-2e12-434b-984d-cd10d2247849?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:18 GMT + - Tue, 13 Jul 2021 09: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-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '103' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -6398,30 +28612,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '7011' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:19 GMT + - Tue, 13 Jul 2021 09:04:58 GMT expires: - '-1' pragma: @@ -6437,67 +28652,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '102' 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 ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","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/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:04:20 GMT + - Tue, 13 Jul 2021 09: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/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + 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: @@ -6506,21 +28720,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6529,7 +28744,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:21 GMT + - Tue, 13 Jul 2021 09:05:00 GMT expires: - '-1' pragma: @@ -6545,7 +28760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '100' x-powered-by: - ASP.NET status: @@ -6559,21 +28774,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6582,7 +28798,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:22 GMT + - Tue, 13 Jul 2021 09:05:01 GMT expires: - '-1' pragma: @@ -6598,7 +28814,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '99' x-powered-by: - ASP.NET status: @@ -6612,21 +28828,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6635,7 +28852,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:23 GMT + - Tue, 13 Jul 2021 09:05:03 GMT expires: - '-1' pragma: @@ -6651,7 +28868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '98' x-powered-by: - ASP.NET status: @@ -6665,21 +28882,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6688,7 +28906,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:25 GMT + - Tue, 13 Jul 2021 09:05:04 GMT expires: - '-1' pragma: @@ -6704,7 +28922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '97' x-powered-by: - ASP.NET status: @@ -6718,21 +28936,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6741,7 +28960,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:26 GMT + - Tue, 13 Jul 2021 09:05:05 GMT expires: - '-1' pragma: @@ -6757,7 +28976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '96' x-powered-by: - ASP.NET status: @@ -6771,21 +28990,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6794,7 +29014,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:27 GMT + - Tue, 13 Jul 2021 09:05:06 GMT expires: - '-1' pragma: @@ -6810,7 +29030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '95' x-powered-by: - ASP.NET status: @@ -6824,21 +29044,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6847,7 +29068,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:29 GMT + - Tue, 13 Jul 2021 09:05:08 GMT expires: - '-1' pragma: @@ -6863,7 +29084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '94' x-powered-by: - ASP.NET status: @@ -6877,21 +29098,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6900,7 +29122,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:30 GMT + - Tue, 13 Jul 2021 09:05:09 GMT expires: - '-1' pragma: @@ -6916,7 +29138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '93' x-powered-by: - ASP.NET status: @@ -6930,21 +29152,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6953,7 +29176,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:32 GMT + - Tue, 13 Jul 2021 09:05:10 GMT expires: - '-1' pragma: @@ -6969,7 +29192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '92' x-powered-by: - ASP.NET status: @@ -6983,21 +29206,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7006,7 +29230,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:33 GMT + - Tue, 13 Jul 2021 09:05:11 GMT expires: - '-1' pragma: @@ -7022,7 +29246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '91' x-powered-by: - ASP.NET status: @@ -7036,21 +29260,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7059,7 +29284,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:34 GMT + - Tue, 13 Jul 2021 09:05:13 GMT expires: - '-1' pragma: @@ -7075,7 +29300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '90' x-powered-by: - ASP.NET status: @@ -7089,21 +29314,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7112,7 +29338,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:35 GMT + - Tue, 13 Jul 2021 09:05:14 GMT expires: - '-1' pragma: @@ -7128,7 +29354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '89' x-powered-by: - ASP.NET status: @@ -7142,21 +29368,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7165,7 +29392,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:36 GMT + - Tue, 13 Jul 2021 09:05:15 GMT expires: - '-1' pragma: @@ -7181,7 +29408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '88' x-powered-by: - ASP.NET status: @@ -7195,21 +29422,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7218,7 +29446,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:38 GMT + - Tue, 13 Jul 2021 09:05:16 GMT expires: - '-1' pragma: @@ -7234,7 +29462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '87' x-powered-by: - ASP.NET status: @@ -7248,21 +29476,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7271,7 +29500,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:39 GMT + - Tue, 13 Jul 2021 09:05:18 GMT expires: - '-1' pragma: @@ -7287,7 +29516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '86' x-powered-by: - ASP.NET status: @@ -7301,21 +29530,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7324,7 +29554,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:40 GMT + - Tue, 13 Jul 2021 09:05:19 GMT expires: - '-1' pragma: @@ -7340,7 +29570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '85' x-powered-by: - ASP.NET status: @@ -7354,21 +29584,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7377,7 +29608,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:41 GMT + - Tue, 13 Jul 2021 09:05:21 GMT expires: - '-1' pragma: @@ -7393,7 +29624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '84' x-powered-by: - ASP.NET status: @@ -7407,21 +29638,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7430,7 +29662,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:43 GMT + - Tue, 13 Jul 2021 09:05:22 GMT expires: - '-1' pragma: @@ -7446,7 +29678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '83' x-powered-by: - ASP.NET status: @@ -7460,21 +29692,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7483,7 +29716,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:44 GMT + - Tue, 13 Jul 2021 09:05:24 GMT expires: - '-1' pragma: @@ -7499,7 +29732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '82' x-powered-by: - ASP.NET status: @@ -7513,21 +29746,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7536,7 +29770,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:45 GMT + - Tue, 13 Jul 2021 09:05:25 GMT expires: - '-1' pragma: @@ -7552,7 +29786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '81' x-powered-by: - ASP.NET status: @@ -7566,21 +29800,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7589,7 +29824,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:46 GMT + - Tue, 13 Jul 2021 09:05:26 GMT expires: - '-1' pragma: @@ -7605,7 +29840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '80' x-powered-by: - ASP.NET status: @@ -7619,21 +29854,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7642,7 +29878,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:47 GMT + - Tue, 13 Jul 2021 09:05:28 GMT expires: - '-1' pragma: @@ -7658,7 +29894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '79' x-powered-by: - ASP.NET status: @@ -7672,21 +29908,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7695,7 +29932,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:49 GMT + - Tue, 13 Jul 2021 09:05:29 GMT expires: - '-1' pragma: @@ -7711,7 +29948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '78' x-powered-by: - ASP.NET status: @@ -7725,21 +29962,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7748,7 +29986,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:50 GMT + - Tue, 13 Jul 2021 09:05:30 GMT expires: - '-1' pragma: @@ -7764,7 +30002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '77' x-powered-by: - ASP.NET status: @@ -7778,21 +30016,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"InProgress","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7801,7 +30040,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:52 GMT + - Tue, 13 Jul 2021 09:05:31 GMT expires: - '-1' pragma: @@ -7817,7 +30056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '76' x-powered-by: - ASP.NET status: @@ -7831,30 +30070,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4b19ae5a-9c56-455c-ae82-a1f40913ce4f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","name":"4b19ae5a-9c56-455c-ae82-a1f40913ce4f","status":"Succeeded","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"2021-06-21T14:04:20.9315389Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2dc10fd6-6387-40e6-9a90-a13fec33a8de"}}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:53 GMT + - Tue, 13 Jul 2021 09:05:33 GMT expires: - '-1' pragma: @@ -7870,7 +30110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '75' x-powered-by: - ASP.NET status: @@ -7884,38 +30124,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2dc10fd6-6387-40e6-9a90-a13fec33a8de?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2dc10fd6-6387-40e6-9a90-a13fec33a8de","name":"2dc10fd6-6387-40e6-9a90-a13fec33a8de","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.8106069S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T14:04:20.9315389Z","endTime":"2021-06-21T14:04:52.7421458Z","activityId":"89972fef-d299-11eb-91d9-c8f750f92764"}}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:54 GMT + - Tue, 13 Jul 2021 09:05: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: @@ -7925,7 +30164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '74' x-powered-by: - ASP.NET status: @@ -7939,27 +30178,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: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T14%3A01%3A45.7946673Z''\"","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":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '539' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:54 GMT + - Tue, 13 Jul 2021 09:05:35 GMT expires: - '-1' pragma: @@ -7974,6 +30217,10 @@ interactions: - 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 @@ -7985,68 +30232,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: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-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\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2021-06-17T17%3A23%3A15.8657762Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLI\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"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\":\"eastasia\",\"name\":\"akneema-vault-ea\",\"etag\":\"W/\\\"datetime'2021-06-18T05%3A26%3A19.3012951Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"CLI\",\"Owner\":\"akneema\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ea\",\"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\":\"westindia\",\"name\":\"geettest1\",\"etag\":\"W/\\\"datetime'2021-03-04T10%3A22%3A56.9671205Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Auto - Shutdown\":\"No\",\"DeleteBy\":\"01-2022\",\"Owner\":\"gesahoo\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testVMgeesahoo_group/providers/Microsoft.RecoveryServices/vaults/geettest1\",\"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'2021-03-23T06%3A00%3A10.4507864Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/akkanaselrs/providers/microsoft.managedidentity/userassignedidentities/cmktestidentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"objectId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"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\":\"hiagaSrcRG1\",\"etag\":\"W/\\\"datetime'2021-05-13T11%3A52%3A38.3808391Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"Delete By\":\"05-2020\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1\",\"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\":\"hiagaSrcVault2\",\"etag\":\"W/\\\"datetime'2021-05-31T10%3A44%3A49.9950779Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"03-2022\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"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'2021-04-28T16%3A39%3A07.8341181Z'\\\"\",\"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-cli-test-vault\",\"etag\":\"W/\\\"datetime'2021-06-21T09%3A00%3A09.8379618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-cli-test-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"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\":\"akneema-vault-crr\",\"etag\":\"W/\\\"datetime'2021-06-17T18%3A42%3A55.4788796Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLI\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-crr\",\"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\":\"vault42\",\"etag\":\"W/\\\"datetime'2021-03-09T10%3A58%3A49.2838109Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault42\",\"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-vaultq3ma7bfiygl\",\"etag\":\"W/\\\"datetime'2021-06-14T07%3A33%3A30.0008612Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2021-06-21T14%3A01%3A45.7946673Z'\\\"\",\"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-vaultapntlpa5sak\",\"etag\":\"W/\\\"datetime'2021-06-14T07%3A33%3A39.4258298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak\",\"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\":\"gesahoo1\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A41%3A43.2269964Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoo12\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A38%3A22.7858659Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo12\",\"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\":\"gesahoosql\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A12%3A51.1997421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoosql\",\"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\":\"gesahoovault1\",\"etag\":\"W/\\\"datetime'2021-05-20T06%3A52%3A28.3837417Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\",\"DeleteBy\":\"01-2022\",\"AutoShutdown\":\"No\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault1\",\"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\":\"PSTestRSV4a930a0c\",\"etag\":\"W/\\\"datetime'2021-05-18T15%3A23%3A10.4642162Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"PSTestRSV7e8b8161\",\"etag\":\"W/\\\"datetime'2021-06-08T06%3A39%3A42.72721Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"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'2021-05-25T16%3A58%3A51.4828365Z'\\\"\",\"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\"}}]}" + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '43929' + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 14:04:55 GMT + - Tue, 13 Jul 2021 09: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-ms-original-request-ids: - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 - - c6117657-d44f-459c-8f7d-6997e62b2c09 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -8058,30 +30286,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:56 GMT + - Tue, 13 Jul 2021 09:05:38 GMT expires: - '-1' pragma: @@ -8097,7 +30326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '71' x-powered-by: - ASP.NET status: @@ -8111,31 +30340,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"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":"Completed","lastBackupTime":"2021-06-21T03:06:48.6251308Z","protectedItemDataId":"263883848880839","extendedProperties":{"linuxVmApplicationName":""},"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-06-21T03:07:09.2939657Z","isArchiveEnabled":false}}]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1815' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:04:58 GMT + - Tue, 13 Jul 2021 09:05:39 GMT expires: - '-1' pragma: @@ -8151,7 +30380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '70' x-powered-by: - ASP.NET status: @@ -8165,30 +30394,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:00 GMT + - Tue, 13 Jul 2021 09:05:40 GMT expires: - '-1' pragma: @@ -8204,7 +30434,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '69' x-powered-by: - ASP.NET status: @@ -8218,30 +30448,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:02 GMT + - Tue, 13 Jul 2021 09:05:42 GMT expires: - '-1' pragma: @@ -8257,7 +30488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '68' x-powered-by: - ASP.NET status: @@ -8271,30 +30502,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:03 GMT + - Tue, 13 Jul 2021 09:05:43 GMT expires: - '-1' pragma: @@ -8310,7 +30542,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '67' x-powered-by: - ASP.NET status: @@ -8324,30 +30556,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:04 GMT + - Tue, 13 Jul 2021 09:05:44 GMT expires: - '-1' pragma: @@ -8363,7 +30596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '66' x-powered-by: - ASP.NET status: @@ -8377,30 +30610,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:04 GMT + - Tue, 13 Jul 2021 09:05:45 GMT expires: - '-1' pragma: @@ -8416,7 +30650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '65' x-powered-by: - ASP.NET status: @@ -8430,30 +30664,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:06 GMT + - Tue, 13 Jul 2021 09:05:47 GMT expires: - '-1' pragma: @@ -8469,7 +30704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '64' x-powered-by: - ASP.NET status: @@ -8483,31 +30718,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiaga-rg;hiaga-vm/protectedItems/VM;iaasvmcontainerv2;hiaga-rg;hiaga-vm","name":"VM;iaasvmcontainerv2;hiaga-rg;hiaga-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"hiaga-VM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Compute/virtualMachines/hiaga-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":"2021-06-20T22:02:27.2703247Z","protectedItemDataId":"123146101070871","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiaga-rg;hiaga-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Compute/virtualMachines/hiaga-VM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T22:02:36.7773472Z","isArchiveEnabled":false}}]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"InProgress","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1821' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:08 GMT + - Tue, 13 Jul 2021 09:05:48 GMT expires: - '-1' pragma: @@ -8523,7 +30758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '63' x-powered-by: - ASP.NET status: @@ -8537,30 +30772,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2021-01-01&$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/aedbdeda-392f-4cfa-b203-4d362f167384?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"aedbdeda-392f-4cfa-b203-4d362f167384","name":"aedbdeda-392f-4cfa-b203-4d362f167384","status":"Succeeded","startTime":"2021-07-13T09:03:57.6483401Z","endTime":"2021-07-13T09:03:57.6483401Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0c5fc82e-1259-4a7a-9505-8f6ee1b8a938"}}' headers: cache-control: - no-cache content-length: - - '12' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:10 GMT + - Tue, 13 Jul 2021 09:05:49 GMT expires: - '-1' pragma: @@ -8576,7 +30812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '62' x-powered-by: - ASP.NET status: @@ -8590,36 +30826,39 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/0c5fc82e-1259-4a7a-9505-8f6ee1b8a938?api-version=2021-01-01 response: body: - string: '{"value":[]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0c5fc82e-1259-4a7a-9505-8f6ee1b8a938","name":"0c5fc82e-1259-4a7a-9505-8f6ee1b8a938","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.1516288S","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-07-13T09:03:57.6483401Z","endTime":"2021-07-13T09:05:49.7999689Z","activityId":"401dc2e8-e3b9-11eb-bfff-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '12' + - '973' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:11 GMT + - Tue, 13 Jul 2021 09:05:51 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8629,7 +30868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '72' x-powered-by: - ASP.NET status: @@ -8643,18 +30882,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup container list Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type -v -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ea/backupProtectedItems?api-version=2021-01-01&$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/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -8666,7 +30905,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:12 GMT + - Tue, 13 Jul 2021 09:05:51 GMT expires: - '-1' pragma: @@ -8682,7 +30921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -8702,42 +30941,70 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2021-03-01 response: body: - string: '{"value":[]}' + string: '{"value":[{"location":"westus","name":"adds","etag":"W/\"datetime''2021-05-31T07%3A02%3A42.5074403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/adds","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"CmkTestSkipWL","etag":"W/\"datetime''2020-05-21T14%3A39%3A51.5768432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/CmkTestSkipWL","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"test","etag":"W/\"datetime''2020-04-05T14%3A34%3A25.8014976Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"vault","etag":"W/\"datetime''2020-12-02T10%3A40%3A36.6401797Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"testZRSValue","etag":"W/\"datetime''2020-06-29T12%3A59%3A36.0904892Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testZRSValue","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"amchandnVault1502A","etag":"W/\"datetime''2020-02-15T10%3A36%3A34.5145915Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/Vaults/amchandnVault1502A","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"standard"}},{"location":"westus","name":"dosvaulttesting","etag":"W/\"datetime''2021-07-08T12%3A15%3A49.4261866Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.RecoveryServices/vaults/dosvaulttesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wusKosinghaVault","etag":"W/\"datetime''2020-09-18T08%3A17%3A22.3508123Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/wusKosinghaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wuskosignhavault1","etag":"W/\"datetime''2020-09-19T20%3A12%3A15.4311806Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/wuskosignhavault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"vaultbug","etag":"W/\"datetime''2020-08-28T04%3A32%3A11.372405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultbug/providers/Microsoft.RecoveryServices/vaults/vaultbug","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"wuskosinghaVault2","etag":"W/\"datetime''2020-09-20T05%3A59%3A56.4876842Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"ABCTest","etag":"W/\"datetime''2020-12-03T18%3A49%3A06.1964143Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/ABCTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"rtewfasd","etag":"W/\"datetime''2021-06-04T07%3A02%3A33.0990962Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"31e69461-560a-4b1e-88e8-60613fb23dde","startTimeUtc":"2021-06-04T07:02:08.7584831Z","completionTimeUtc":"2021-06-04T07:02:33.0733902Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarDiskRG/providers/Microsoft.RecoveryServices/vaults/rtewfasd","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"test1","etag":"W/\"datetime''2021-03-10T02%3A50%3A02.9274187Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/test1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestVault","etag":"W/\"datetime''2021-01-28T06%3A36%3A56.1613503Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/TestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVault1","etag":"W/\"datetime''2021-06-09T05%3A06%3A46.501142Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/testVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"XXXTestVault","etag":"W/\"datetime''2020-12-10T06%3A16%3A16.9017184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XXXTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"XYZTestVault","etag":"W/\"datetime''2020-12-10T06%3A14%3A54.0851289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XYZTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"jakavetVault","etag":"W/\"datetime''2021-04-27T11%3A07%3A10.316107Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TesCRRABC","etag":"W/\"datetime''2021-01-08T14%3A38%3A29.5049353Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/TesCRRABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"VMTestvault55","etag":"W/\"datetime''2021-04-26T14%3A13%3A09.5945924Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/VMTestvault55","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaulteus","etag":"W/\"datetime''2021-04-22T07%3A56%3A59.7390353Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/testVaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"bcrg","etag":"W/\"datetime''2020-11-03T09%3A59%3A34.4359315Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"Testgegpolicy","etag":"W/\"datetime''2021-01-08T10%3A16%3A18.3584449Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gegRG/providers/Microsoft.RecoveryServices/vaults/Testgegpolicy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"eusKosinghaIAASVMTest","etag":"W/\"datetime''2020-09-21T05%3A36%3A04.5222564Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"kosinghaCRRTest","etag":"W/\"datetime''2020-09-18T06%3A44%3A46.8154853Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"euskosinghavault1","etag":"W/\"datetime''2020-09-19T18%3A32%3A30.4677948Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/euskosinghavault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"euskosinghaVault2","etag":"W/\"datetime''2020-09-20T05%3A51%3A52.4028499Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestVaultABC","etag":"W/\"datetime''2020-12-09T19%3A27%3A30.4707549Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuTestRG/providers/Microsoft.RecoveryServices/vaults/TestVaultABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"mabcrashjobtesting","etag":"W/\"datetime''2021-05-28T07%3A26%3A01.2951182Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pikumarCrashJob/providers/Microsoft.RecoveryServices/vaults/mabcrashjobtesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault219","etag":"W/\"datetime''2021-03-16T11%3A34%3A23.8319583Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault219","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault854","etag":"W/\"datetime''2021-03-24T06%3A56%3A38.8986105Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault854","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"PublicPreviewVault","etag":"W/\"datetime''2021-02-17T07%3A01%3A36.9926607Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PublicpreviewRG/providers/Microsoft.RecoveryServices/vaults/PublicPreviewVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"ResourceGuardTesting","etag":"W/\"datetime''2021-03-23T18%3A04%3A28.8024601Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/ResourceGuardTesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"deletevault","etag":"W/\"datetime''2021-03-05T06%3A50%3A37.9124769Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-restore-disk-rg/providers/Microsoft.RecoveryServices/vaults/deletevault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"deleteme","etag":"W/\"datetime''2021-03-05T07%3A01%3A38.5572866Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/deleteme","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"My-vault","etag":"W/\"datetime''2021-05-27T05%3A23%3A33.2560575Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","Delete + By":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"My-vault-2","etag":"W/\"datetime''2021-05-29T08%3A26%3A17.2301602Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","DeleteBy":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Mycheckingvault","etag":"W/\"datetime''2021-07-07T06%3A36%3A17.7673145Z''\"","tags":{"MABUsed":"Yes","Owner":"t-shjoshi","Purpose":"Testing","DeleteBy":"12-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/Mycheckingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"TesSumit5-managedrsvault","etag":"W/\"datetime''2021-07-08T05%3A32%3A15.4547043Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sumittestsxxbbdwvakp2q/providers/Microsoft.RecoveryServices/vaults/TesSumit5-managedrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"TestingCRRLrs","etag":"W/\"datetime''2021-02-10T09%3A44%3A11.0390374Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingCrrLrs/providers/Microsoft.RecoveryServices/vaults/TestingCRRLrs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvault","etag":"W/\"datetime''2020-09-17T08%3A33%3A27.9437854Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvault/providers/Microsoft.RecoveryServices/vaults/testvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"vault441","etag":"W/\"datetime''2021-04-01T11%3A11%3A45.3835831Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK","etag":"W/\"datetime''2021-07-13T04%3A13%3A20.9000871Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-2","etag":"W/\"datetime''2021-07-04T12%3A05%3A28.925451Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a6c0983b-dbf8-47da-9a49-6a850e67b13b","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testdemoMSI":{"clientId":"03aaf883-a93c-4dcb-bcb0-bc88411776c8","objectId":"8df55a03-1a34-41ef-9954-2ba3764422a8"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI"},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-3","etag":"W/\"datetime''2021-07-10T15%3A20%3A30.4873057Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1cbf3e7d-3458-4242-8ebc-02342fc2b1c2","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testdemoMSI":{"clientId":"03aaf883-a93c-4dcb-bcb0-bc88411776c8","objectId":"8df55a03-1a34-41ef-9954-2ba3764422a8"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI"},"infrastructureEncryption":"Enabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-4","etag":"W/\"datetime''2021-07-02T07%3A01%3A00.6360877Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c6bdda6a-8b58-45f0-88a5-0dba6d6cba16","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-5","etag":"W/\"datetime''2021-07-13T04%3A22%3A56.1218447Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-6","etag":"W/\"datetime''2021-06-13T14%3A17%3A51.7202976Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1f8e7e87-9271-489d-add2-1fe100a0c97a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/testvkey"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testVaultVK-9","etag":"W/\"datetime''2021-06-24T07%3A04%3A15.1977746Z''\"","tags":{"MABUsed":"Yes","Owner":"t-vkatyal","Purpose":"Testing","DeleteBy":"12-2022"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3ffaa1bc-cbfe-44f6-8998-71c2c383634e","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vkatyalMSI":{"clientId":"c366dc05-6d17-470f-aa95-eb3e066bfb03","objectId":"30993cec-d6ea-4418-b3c9-38c873c67581"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://testvkatyal.vault.azure.net/keys/test2"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-9","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"TestMadhuDeVault","etag":"W/\"datetime''2020-11-27T04%3A20%3A41.0648542Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestMadhuDeRG/providers/Microsoft.RecoveryServices/vaults/TestMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"CrrTestJPE","etag":"W/\"datetime''2021-04-30T10%3A51%3A27.7251447Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cffd0fa0-eba5-42b7-8b9d-472ae42839ae","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPE","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japanwest","name":"CrrTestJPW","etag":"W/\"datetime''2020-09-18T09%3A33%3A28.0683144Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPW","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"prnookal-aueast","etag":"W/\"datetime''2021-06-18T06%3A25%3A33.5464384Z''\"","tags":{"Owner":"prnookal","isMABUsed":"Yes","Purpose":"runners"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/prnookal-aueast","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralus","name":"vault171","etag":"W/\"datetime''2020-09-21T07%3A33%3A42.7317982Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"newVault24","etag":"W/\"datetime''2021-06-25T02%3A25%3A38.3011515Z''\"","tags":{"MAB + Used ":"yes","Owner":"jakavet","Purpose":" Testing","DeleteBy":"01-2023"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"vault306","etag":"W/\"datetime''2021-04-01T10%3A48%3A57.8877817Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southindia","name":"vsarg-rsv","etag":"W/\"datetime''2020-03-05T11%3A55%3A28.5108108Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Vsarg-new/providers/Microsoft.RecoveryServices/vaults/vsarg-rsv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MUADemoVault","etag":"W/\"datetime''2021-06-03T11%3A56%3A49.6078373Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/MUADemoVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newMUAVault","etag":"W/\"datetime''2021-07-04T12%3A27%3A41.6648586Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newMUAVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newvault2","etag":"W/\"datetime''2021-06-11T07%3A30%3A43.330465Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault3","etag":"W/\"datetime''2021-06-11T08%3A47%3A56.2104608Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MUADemoVault","etag":"W/\"datetime''2021-06-14T09%3A07%3A39.6651499Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/MUADemoVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"muaVault","etag":"W/\"datetime''2021-05-10T21%3A09%3A25.7480954Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/muaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault","etag":"W/\"datetime''2021-06-11T07%3A10%3A07.4184262Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"newVault4","etag":"W/\"datetime''2021-06-11T09%3A35%3A55.7244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hakavetMUAVault","etag":"W/\"datetime''2021-06-28T07%3A12%3A20.4178367Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/hakavetMUAVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"wcusvault","etag":"W/\"datetime''2021-04-07T07%3A46%3A26.5037181Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/wcusvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"MadhuDeMFATestWCUS","etag":"W/\"datetime''2021-06-03T09%3A27%3A35.9807688Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupAdminMadhudeRG/providers/Microsoft.RecoveryServices/vaults/MadhuDeMFATestWCUS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"CrossTenantVault","etag":"W/\"datetime''2021-04-14T08%3A02%3A29.7889034Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrossTenantMadhudeRG/providers/Microsoft.RecoveryServices/vaults/CrossTenantVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"mfamuarsvault","etag":"W/\"datetime''2021-06-22T11%3A28%3A02.6891649Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mfa_mua_rg/providers/Microsoft.RecoveryServices/vaults/mfamuarsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"resourceGuardTesting","etag":"W/\"datetime''2021-06-10T09%3A08%3A00.1657773Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGuardTesting/providers/Microsoft.RecoveryServices/vaults/resourceGuardTesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"UtsMuaVault1","etag":"W/\"datetime''2021-06-03T19%3A29%3A48.8002514Z''\"","tags":{"Owner":"utraghuv","Purpose":"Testing","DeleteBy":"01-2025","MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsMuaMfaRg/providers/Microsoft.RecoveryServices/vaults/UtsMuaVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"WCUSMadhuDeVault","etag":"W/\"datetime''2020-09-17T10%3A43%3A46.5117487Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WCUSMadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WCUSMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"WUS2MadhuDeCrrVault","etag":"W/\"datetime''2020-09-17T10%3A04%3A12.6172664Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"vault493","etag":"W/\"datetime''2021-03-16T16%3A03%3A35.4640808Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus2","name":"zakVault","etag":"W/\"datetime''2020-05-01T02%3A43%3A54.7891358Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrg/providers/Microsoft.RecoveryServices/vaults/zakVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"SourceVault","etag":"W/\"datetime''2020-10-01T13%3A04%3A51.6707309Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"ukwest","name":"vault762","etag":"W/\"datetime''2021-04-05T13%3A09%3A10.0588403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"koreacentral","name":"vault108","etag":"W/\"datetime''2021-03-25T11%3A21%3A22.9805358Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgKRC-otds-rraj/providers/Microsoft.RecoveryServices/vaults/vault108","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"norwayeast","name":"swtestvault100","etag":"W/\"datetime''2021-06-01T02%3A53%3A31.6381416Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/swtestvault100","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"norwayeast","name":"hiagaCRRvault","etag":"W/\"datetime''2021-06-04T10%3A30%3A32.4823025Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"01-2099"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR/providers/Microsoft.RecoveryServices/vaults/hiagaCRRvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"switzerlandwest","name":"abhinkszw","etag":"W/\"datetime''2021-06-04T14%3A16%3A45.3803344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.RecoveryServices/vaults/abhinkszw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"testvaultccy","etag":"W/\"datetime''2021-02-02T13%3A24%3A34.3514747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"amchandnVault1502B","etag":"W/\"datetime''2020-02-15T10%3A38%3A05.4881405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/Vaults/amchandnVault1502B","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"asmaskar0107","etag":"W/\"datetime''2020-07-01T09%3A36%3A37.6662577Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ad9545cf-bef1-4330-a95d-4161a4ec36e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar0107","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar0203","etag":"W/\"datetime''2020-03-02T13%3A48%3A37.6211821Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"94a4ce31-a0c9-42e4-87ce-1058c727b485","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar0203","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar050315","etag":"W/\"datetime''2020-03-05T12%3A54%3A30.002739Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a5aef76d-640e-4b83-912a-2af95837d1ad","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar050315","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar07051","etag":"W/\"datetime''2021-05-07T09%3A04%3A34.841415Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07051","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar07052","etag":"W/\"datetime''2021-05-07T09%3A05%3A08.123179Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07052","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar123","etag":"W/\"datetime''2020-02-27T10%3A36%3A51.7694444Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d271606f-0849-45ad-9cf0-92bc1bd2c9f2","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar123","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar20073","etag":"W/\"datetime''2020-07-30T06%3A58%3A40.9942587Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9801498f-0579-4265-b7e2-3e90220bd271","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"0dae4f5e-a576-47eb-9f2f-fa52aef67cdb","startTimeUtc":"2019-04-26T00:36:52.8303836Z","completionTimeUtc":"2019-04-26T00:38:51.932462Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RegionalRPResourceGroup + kaneta?????? ABC (xyz)_.,-/providers/Microsoft.RecoveryServices/Vaults/TestMoveResourceAcrossSubscription","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RegionalRPResourceGroup/providers/Microsoft.RecoveryServices/Vaults/TestMoveResourceAcrossSubscription"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar20073","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"asmaskar23071","etag":"W/\"datetime''2020-07-23T10%3A59%3A11.9419674Z''\"","tags":{"PutKey5CCY":"Putvalue5CCY"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"f83b0ce3-27e5-4a94-9a8f-81076d019faf","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar23071","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"BackupPreviewCCYNewVault3","etag":"W/\"datetime''2021-06-08T13%3A28%3A06.144128Z''\"","tags":{"MAB + Used":"true"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewCCYNewVault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"archiveccyvault1","etag":"W/\"datetime''2021-01-21T19%3A30%3A25.5404992Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault891","etag":"W/\"datetime''2021-03-22T06%3A41%3A46.0158817Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtesting2","etag":"W/\"datetime''2021-06-22T07%3A59%3A43.2135046Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"84acee96-299a-4216-8a1a-a1ec352f2796","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtesting2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy","etag":"W/\"datetime''2021-06-22T07%3A50%3A49.10808Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"398523fb-95a9-4858-9575-a00a77451bee","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy3","etag":"W/\"datetime''2021-06-22T08%3A00%3A01.7446193Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"36c479cd-90b8-4908-8307-1f894a532123","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"cmkmhsmtestingccy4","etag":"W/\"datetime''2021-06-22T08%3A00%3A17.1054926Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2636e10f-2d6f-4417-a38c-e2ebce6c8032","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ResourceGuardMadhuDeVault","etag":"W/\"datetime''2021-03-31T09%3A53%3A07.1759321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupadminTestRG/providers/Microsoft.RecoveryServices/vaults/ResourceGuardMadhuDeVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault549","etag":"W/\"datetime''2020-08-17T14%3A25%3A05.1465764Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault549","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ContosoProdVault","etag":"W/\"datetime''2020-07-14T08%3A21%3A08.2353971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ContosoTestVault","etag":"W/\"datetime''2020-07-14T08%3A26%3A48.6660175Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"kosinghacrrBill","etag":"W/\"datetime''2020-10-13T07%3A42%3A55.8236648Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghacrrBill","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"crrbmsrunnercanaryccy","etag":"W/\"datetime''2021-01-21T17%3A52%3A52.2304449Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrbmsrunnercanarywestus/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"dchandrPostGress","etag":"W/\"datetime''2020-08-24T07%3A21%3A07.6338945Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.RecoveryServices/vaults/dchandrPostGress","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"abc","etag":"W/\"datetime''2021-03-15T12%3A58%3A35.2630766Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.RecoveryServices/vaults/abc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"abc","etag":"W/\"datetime''2021-03-15T12%3A59%3A09.1241989Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupRestore/providers/Microsoft.RecoveryServices/vaults/abc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"CRRTestSourceVault","etag":"W/\"datetime''2020-08-21T13%3A22%3A31.7450918Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/CRRTestSourceVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MercuryCrrVault","etag":"W/\"datetime''2020-07-14T11%3A44%3A50.2881311Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"harjairunnervault2","etag":"W/\"datetime''2020-11-25T08%3A07%3A28.9196414Z''\"","tags":{"MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"IaasvmDrillVault","etag":"W/\"datetime''2020-12-18T16%3A43%3A04.6430891Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault405","etag":"W/\"datetime''2021-03-09T12%3A45%3A13.7808663Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"ld-kosingha-ccy-vault","etag":"W/\"datetime''2021-02-22T12%3A44%3A17.5376672Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cfacfae2-f372-432b-a489-2ec65f4112db","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault139","etag":"W/\"datetime''2021-04-05T10%3A42%3A09.8621756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MFATest","etag":"W/\"datetime''2020-09-01T11%3A28%3A26.5516544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/MFATest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"TestVaultABC","etag":"W/\"datetime''2020-12-14T17%3A25%3A26.9496069Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/TestVaultABC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MadhuDeResourceGuardTest","etag":"W/\"datetime''2021-03-30T15%3A00%3A16.8364847Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/MadhuDeResourceGuardTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"NewVaultForResourceMove","etag":"W/\"datetime''2020-09-07T13%3A00%3A37.7524862Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"9feb1800-9b9c-4747-9b7b-7db7f1d58675","startTimeUtc":"2020-09-07T13:00:15.0401715Z","completionTimeUtc":"2020-09-07T13:00:41.2641365Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"dsmove-bvt-t1","etag":"W/\"datetime''2021-06-04T05%3A09%3A01.7073668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-t1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"dsmove-bvt-test-vault4","etag":"W/\"datetime''2021-05-25T07%3A01%3A53.8538753Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MonjainCcyCrrVault","etag":"W/\"datetime''2020-12-21T08%3A23%3A38.931841Z''\"","tags":{"MAB + Used":"True","Owner":"monjain","DeleteBy":"12-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"muaVault","etag":"W/\"datetime''2021-04-05T12%3A01%3A50.9911114Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muaRG/providers/Microsoft.RecoveryServices/vaults/muaVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"MUAtesting123","etag":"W/\"datetime''2021-06-22T04%3A44%3A10.7204483Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MUAtestRG/providers/Microsoft.RecoveryServices/vaults/MUAtesting123","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault204","etag":"W/\"datetime''2021-03-16T14%3A40%3A16.2603455Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newonerg/providers/Microsoft.RecoveryServices/vaults/vault204","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"crrbmsrunnercanaryccy","etag":"W/\"datetime''2021-01-21T13%3A05%3A57.9244523Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"centraluseuap","name":"CRRTest","etag":"W/\"datetime''2021-01-08T12%3A42%3A51.309726Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/CRRTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"VMPeTest","etag":"W/\"datetime''2020-09-30T13%3A00%3A40.0031654Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3fc3467b-d22a-4d70-8aee-f63d50ba2c3a","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/privateEndpointConnections/pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70","name":"pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70","type":"Microsoft.RecoveryServices/vaults/privateEndpointConnections","location":"centraluseuap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/privateEndpointConnections/pe1.127572456965544327.backup.93613b46-98f2-4d0c-89d0-639f99c60c70"},"privateLinkServiceConnectionState":{"status":"Approved","description":"None","actionsRequired":"None"}}}],"privateEndpointStateForBackup":"Enabled","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"prodVault1307A","etag":"W/\"datetime''2020-07-14T07%3A34%3A17.1481792Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/prodVault1307A","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"testVault1307A","etag":"W/\"datetime''2020-07-14T07%3A36%3A58.4966609Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/testVault1307A","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault821","etag":"W/\"datetime''2021-03-24T18%3A19%3A38.5442205Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault821","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"vault909","etag":"W/\"datetime''2021-03-26T09%3A09%3A14.6486388Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/vault909","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"surraiccycmkvault1","etag":"W/\"datetime''2021-01-16T11%3A35%3A15.5860607Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surrai-cmk-test-ccy/providers/Microsoft.RecoveryServices/vaults/surraiccycmkvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"surraiccytestvault","etag":"W/\"datetime''2020-12-15T09%3A55%3A34.0240199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centraluseuap","name":"TestLRSVault","etag":"W/\"datetime''2020-12-14T17%3A33%3A44.5567874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestRG/providers/Microsoft.RecoveryServices/vaults/TestLRSVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"TestCmkWLSkip1","etag":"W/\"datetime''2020-05-21T14%3A42%3A27.5065207Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"abc","etag":"W/\"datetime''2020-09-07T14%3A47%3A44.3183485Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"dee7a28a-3f3c-4077-9222-9b810424eb47","startTimeUtc":"2020-09-07T14:47:17.5453479Z","completionTimeUtc":"2020-09-07T14:47:44.2228308Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/abc","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adigupt-new","etag":"W/\"datetime''2021-06-15T10%3A02%3A05.3557572Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/adigupt-new","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dhdjd","etag":"W/\"datetime''2021-06-15T10%3A04%3A36.511016Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/dhdjd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"newOne","etag":"W/\"datetime''2021-07-08T09%3A30%3A07.1235718Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newOne","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"abhinkVault","etag":"W/\"datetime''2020-06-05T06%3A34%3A59.1257744Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/abhinkVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"asmaskar07053","etag":"W/\"datetime''2021-05-07T09%3A06%3A04.912976Z''\"","tags":{"name2":"standard2"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar07053","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"asmaskar25051","etag":"W/\"datetime''2021-05-25T09%3A52%3A34.3433191Z''\"","tags":{"name":"standard"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8bbd7383-05a4-40c6-8ae6-b159ae5eb94c","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/Vaults/asmaskar25051","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"BackupPreviewECYNewVault","etag":"W/\"datetime''2020-03-27T10%3A30%3A25.6287261Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"bcrgVault","etag":"W/\"datetime''2020-11-03T17%3A18%3A56.5731317Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrgVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adkayeth-afs-bckp","etag":"W/\"datetime''2020-10-20T08%3A01%3A41.9676647Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"adkayeth-afs-test","etag":"W/\"datetime''2020-12-11T13%3A50%3A29.708873Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault945","etag":"W/\"datetime''2020-08-17T14%3A25%3A43.5185782Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault945","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"kosinghaBillTest2","etag":"W/\"datetime''2020-10-13T13%3A37%3A46.5637089Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ECYDrill","etag":"W/\"datetime''2019-12-05T07%3A15%3A29.0806564Z''\"","tags":{"MAB + Used":"Yes","Owner":"NirajK;SriramSa","Purpose":"WorkloadBackup-Production-SwaggerTestAutomation"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ECYDrill","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault269","etag":"W/\"datetime''2021-04-05T02%3A53%3A17.6745557Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault269","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault445","etag":"W/\"datetime''2021-04-01T10%3A54%3A03.5918765Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault445","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"WorkloadAzDrillZRS","etag":"W/\"datetime''2021-07-13T07%3A37%3A51.7111819Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/WorkloadAzDrillZRS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZrsVault","etag":"W/\"datetime''2021-07-13T06%3A35%3A38.7517541Z''\"","tags":{"owner":"agarwala","Purpose":"ZonedDownDrillValidation"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gesahootest","etag":"W/\"datetime''2021-03-24T15%3A02%3A32.32287Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"harjairunnervault","etag":"W/\"datetime''2020-11-25T07%3A56%3A42.7302082Z''\"","tags":{"MABUsed":"Yes","isMABUsed":"True"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"KosinghaECYbillTestingVault","etag":"W/\"datetime''2020-10-13T12%3A12%3A24.5007851Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ld-kosingha-ecy-vault","etag":"W/\"datetime''2020-11-10T19%3A15%3A23.0544636Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ECYResourceMove","etag":"W/\"datetime''2020-09-07T13%3A33%3A30.191312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/ECYResourceMove","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"CRRTestTargetVault","etag":"W/\"datetime''2020-08-21T13%3A25%3A40.5894518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/CRRTestTargetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"MadhuDeTestVM","etag":"W/\"datetime''2020-12-14T17%3A41%3A21.4302044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.RecoveryServices/vaults/MadhuDeTestVM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-apitest-s1","etag":"W/\"datetime''2021-06-11T09%3A37%3A55.6238725Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/Vaults/dsmove-bvt-apitest-s1","type":"Microsoft.RecoveryServices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"eastus2euap","name":"dsmove-bvt-s1","etag":"W/\"datetime''2021-06-11T09%3A36%3A39.760365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-s1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-s10","etag":"W/\"datetime''2021-06-16T12%3A54%3A53.7114477Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-s10","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault1","etag":"W/\"datetime''2021-05-18T13%3A08%3A58.2261383Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault2","etag":"W/\"datetime''2021-05-25T06%3A25%3A33.7205872Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-test-vault3","etag":"W/\"datetime''2021-05-25T07%3A00%3A18.8457965Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"dsmove-bvt-vault5","etag":"W/\"datetime''2021-06-04T02%3A48%3A50.0887106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-vault5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"AutoUpdateTestMARS","etag":"W/\"datetime''2021-05-21T10%3A47%3A06.1117132Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/AutoUpdateTestMARS","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraicmkecyvault1","etag":"W/\"datetime''2021-01-19T12%3A24%3A38.4533018Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c97ac6b7-fe57-4f3e-8b56-3e9d9605690f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecycmkvault3011","etag":"W/\"datetime''2021-03-01T14%3A50%3A08.6573876Z''\"","tags":{"Owner":"surrai","DeleteBy":"03-2022","Purpose":"Testing","AutoShutdown":"No","MAB + Used":"Yes"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1ae4fa42-1608-4993-8caf-6c3c59d5b0c6","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecypevault","etag":"W/\"datetime''2021-02-11T16%3A01%3A47.5113239Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"eee97ec2-b109-46cc-9502-ff959111852f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/privateEndpointConnections/surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be","name":"surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be","type":"Microsoft.RecoveryServices/vaults/privateEndpointConnections","location":"eastus2euap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/privateEndpointConnections/surraiecype.7006907693251457437.backup.2bcd8347-0834-4a10-bb40-ca5f21fde5be"},"privateLinkServiceConnectionState":{"status":"Approved","description":"None","actionsRequired":"None"}}}],"privateEndpointStateForBackup":"Enabled","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"surraiecytestvault2","etag":"W/\"datetime''2021-02-22T13%3A02%3A15.9960406Z''\"","tags":{"MAB + Used":"Yes","MABUsed":"Yes"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ab39e437-680b-4905-bdce-4655ac7967e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault940","etag":"W/\"datetime''2021-04-01T10%3A48%3A34.0615736Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrgnew/providers/Microsoft.RecoveryServices/vaults/vault940","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"arvindtestvault","etag":"W/\"datetime''2020-07-09T23%3A38%3A38.0140589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"arvindzrstest2","etag":"W/\"datetime''2020-07-09T23%3A57%3A58.0530635Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindzrstest2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"suresht-zrstest","etag":"W/\"datetime''2020-07-09T23%3A49%3A27.1859757Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VihariPZRSBugBash","etag":"W/\"datetime''2020-07-09T23%3A40%3A04.2077741Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZRSTesingCV","etag":"W/\"datetime''2020-07-09T23%3A43%3A53.7557807Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ZZrsVault","etag":"W/\"datetime''2021-06-29T06%3A50%3A31.265465Z''\"","identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"mayaggarrmvault","etag":"W/\"datetime''2021-07-12T07%3A59%3A01.4892403Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"81b6eded-125e-4723-8cd3-f8890cffdbb0","startTimeUtc":"2021-07-12T07:58:37.5000192Z","completionTimeUtc":"2021-07-12T07:59:01.4393009Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggar/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-vault","etag":"W/\"datetime''2021-06-14T19%3A11%3A59.0204753Z''\"","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-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-vault2","etag":"W/\"datetime''2021-06-15T04%3A40%3A50.4746212Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"asmitttestvault","etag":"W/\"datetime''2021-03-30T11%3A33%3A40.9457075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmitttest/providers/Microsoft.RecoveryServices/vaults/asmitttestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vault6ilaqmfbtio","etag":"W/\"datetime''2021-06-17T06%3A29%3A14.1870516Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2axfrllddcexsd7lf5jt2kizmwln26tved5xpd3yjdmvw37lssrbffyzev42zfgop/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ilaqmfbtio","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultciyzoepyvcc","etag":"W/\"datetime''2021-07-13T08%3A01%3A08.3863453Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk5pb5p7jqch","etag":"W/\"datetime''2021-07-13T08%3A04%3A14.4667487Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3d7kl2qk63/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk5pb5p7jqch","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultr3yegpfmnyy","etag":"W/\"datetime''2021-06-17T06%3A34%3A06.3089024Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault66svycrqakh","etag":"W/\"datetime''2021-06-21T06%3A20%3A01.1602578Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultviltn3z3hdn","etag":"W/\"datetime''2021-06-17T06%3A29%3A13.6315248Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdpjnygfyazfuwkslmu5qsjniz7pe7hpn7gw5c2sdejk37okvpcjt25mlmigjr4ruz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultviltn3z3hdn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-07-13T08%3A53%3A22.6566167Z''\"","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-vault7vgbsde3rvo","etag":"W/\"datetime''2021-07-13T08%3A05%3A57.7579639Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghempizrszj/providers/Microsoft.RecoveryServices/vaults/clitest-vault7vgbsde3rvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu2sa3i6fren","etag":"W/\"datetime''2021-07-13T08%3A07%3A35.9303081Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtmrta7e2n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu2sa3i6fren","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxvz7kzd22fq","etag":"W/\"datetime''2021-06-18T08%3A02%3A23.1712616Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo5jjxrimsllok4xd7vkruddg7h2yvde7elfc5l4ee7fz6wm6jievftxow7tsa2lej/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxvz7kzd22fq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7oaiaxnd3uq","etag":"W/\"datetime''2021-07-13T08%3A33%3A45.980739Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4uqtshko5om","etag":"W/\"datetime''2021-06-17T06%3A29%3A13.724613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpuiuax7tzaks7rbrwy3cmj4mni6f6oovxhj2cyaoz5vwpfjngzt7jzcemguuezeix/providers/Microsoft.RecoveryServices/vaults/clitest-vault4uqtshko5om","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt5rhogebbou","etag":"W/\"datetime''2021-07-13T08%3A01%3A07.9449249Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3uww3nsnehj","etag":"W/\"datetime''2021-06-15T05%3A59%3A50.4912309Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtb6fpqzldd/providers/Microsoft.RecoveryServices/vaults/clitest-vault3uww3nsnehj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaults5zqycuhpfa","etag":"W/\"datetime''2021-06-17T06%3A33%3A55.780926Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwurxwm3wip3","etag":"W/\"datetime''2021-06-18T06%3A28%3A05.638515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw334cvoozs2gpptqdii6smyw4i2kkx3wz6gt2onxu6pddwpdkky5py7nhgu4tl4ud/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwurxwm3wip3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcufv3xkmajq","etag":"W/\"datetime''2021-06-17T07%3A56%3A20.3139079Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgykrgkyzkxgcik32u5sbwsjy4ttyfd5gcpqotrtrdskgd3hwukphzxjxgulnl6mkdu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcufv3xkmajq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh4sgz3r4ht","etag":"W/\"datetime''2021-06-18T09%3A37%3A35.4844417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymouom2j5x4w5rdeaywgsdw7pbfwpqpgphgxoa6lht6ofz46r547txy6vkjtuorvm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh4sgz3r4ht","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4stgkxrddm","etag":"W/\"datetime''2021-06-17T07%3A56%3A30.3484167Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz74trrkv7ejfvfrng7ob4kno75fopjy4jzqfn6qj5p5bfjza5bcnomao4yqmpmj7u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4stgkxrddm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3mqxpoklqcy","etag":"W/\"datetime''2021-06-17T06%3A29%3A14.0569283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"vault947","etag":"W/\"datetime''2021-06-11T12%3A26%3A45.9361833Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"test-v1","etag":"W/\"datetime''2021-04-26T11%3A30%3A37.3698706Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/test-v1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"sakaarcsstest","etag":"W/\"datetime''2020-04-01T05%3A59%3A09.528941Z''\"","tags":{"MAB + Used":"yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarcsstest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"sakaarhotfixtest","etag":"W/\"datetime''2020-07-25T08%3A40%3A30.109341Z''\"","tags":{"MAB + Used":"Yes","isMABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarhotfixtest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault735","etag":"W/\"datetime''2021-03-15T17%3A25%3A28.7727957Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedensouth","name":"mabcms","etag":"W/\"datetime''2021-06-03T06%3A44%3A16.0084984Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcms","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedensouth","name":"newRegionVal","etag":"W/\"datetime''2021-06-02T05%3A01%3A19.6255744Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/newRegionVal","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"swedencentral","name":"mabcmtesting","etag":"W/\"datetime''2021-06-03T06%3A36%3A44.1678523Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcmtesting","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '113633' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:05:12 GMT + - Tue, 13 Jul 2021 09:05: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: - - '146' - x-powered-by: - - ASP.NET + x-ms-original-request-ids: + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd + - a7a25e05-4780-4783-b55d-dce1e6e948dd status: code: 200 message: OK @@ -8755,12 +31022,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/adds/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -8772,7 +31039,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:12 GMT + - Tue, 13 Jul 2021 09:05:54 GMT expires: - '-1' pragma: @@ -8788,7 +31055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '122' x-powered-by: - ASP.NET status: @@ -8808,12 +31075,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/CmkTestSkipWL/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -8825,7 +31092,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:13 GMT + - Tue, 13 Jul 2021 09:05:54 GMT expires: - '-1' pragma: @@ -8841,7 +31108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '119' x-powered-by: - ASP.NET status: @@ -8861,12 +31128,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testVMgeesahoo_group/providers/Microsoft.RecoveryServices/vaults/geettest1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/test/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -8878,7 +31145,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:13 GMT + - Tue, 13 Jul 2021 09:05:55 GMT expires: - '-1' pragma: @@ -8894,7 +31161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '122' x-powered-by: - ASP.NET status: @@ -8914,12 +31181,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -8931,7 +31198,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:15 GMT + - Tue, 13 Jul 2021 09:05:56 GMT expires: - '-1' pragma: @@ -8947,7 +31214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '126' x-powered-by: - ASP.NET status: @@ -8967,12 +31234,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testZRSValue/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -8984,7 +31251,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:17 GMT + - Tue, 13 Jul 2021 09:05:57 GMT expires: - '-1' pragma: @@ -9000,7 +31267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '114' x-powered-by: - ASP.NET status: @@ -9020,24 +31287,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502A/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoonew1;testgesahoo3/protectedItems/VM;iaasvmcontainerv2;gesahoonew1;testgesahoo3","name":"VM;iaasvmcontainerv2;gesahoonew1;testgesahoo3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgesahoo3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoonew1/providers/Microsoft.Compute/virtualMachines/testgesahoo3","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"193514824632610","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoonew1;testgesahoo3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoonew1/providers/Microsoft.Compute/virtualMachines/testgesahoo3","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1259' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:18 GMT + - Tue, 13 Jul 2021 09:05:59 GMT expires: - '-1' pragma: @@ -9053,7 +31320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '120' x-powered-by: - ASP.NET status: @@ -9073,12 +31340,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.RecoveryServices/vaults/dosvaulttesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9090,7 +31357,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:20 GMT + - Tue, 13 Jul 2021 09:06:00 GMT expires: - '-1' pragma: @@ -9106,7 +31373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '119' x-powered-by: - ASP.NET status: @@ -9126,12 +31393,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/wusKosinghaVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9143,7 +31410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:21 GMT + - Tue, 13 Jul 2021 09:06:00 GMT expires: - '-1' pragma: @@ -9159,7 +31426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '119' x-powered-by: - ASP.NET status: @@ -9179,12 +31446,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/wuskosignhavault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9196,7 +31463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:22 GMT + - Tue, 13 Jul 2021 09:06:03 GMT expires: - '-1' pragma: @@ -9212,7 +31479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '121' x-powered-by: - ASP.NET status: @@ -9232,25 +31499,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultbug/providers/Microsoft.RecoveryServices/vaults/vaultbug/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-vm-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-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-06-21T03:32:33.1263263Z","protectedItemDataId":"119104222","extendedProperties":{"linuxVmApplicationName":""},"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-06-21T03:32:36.6431203Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1844' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:23 GMT + - Tue, 13 Jul 2021 09:06:05 GMT expires: - '-1' pragma: @@ -9266,7 +31532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '118' x-powered-by: - ASP.NET status: @@ -9286,24 +31552,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1/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":{},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","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/hiagaSrcRG1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;wusvmrg;wuskosinghavm3/protectedItems/VM;iaasvmcontainerv2;wusvmrg;wuskosinghavm3","name":"VM;iaasvmcontainerv2;wusvmrg;wuskosinghavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"wuskosinghavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wusvmrg/providers/Microsoft.Compute/virtualMachines/wuskosinghavm3","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-07-12T15:32:58.1612735Z","protectedItemDataId":"281475983252120","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;wusvmrg;wuskosinghavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wusvmrg/providers/Microsoft.Compute/virtualMachines/wuskosinghavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wuskosinghaRGvault/providers/Microsoft.RecoveryServices/vaults/wuskosinghaVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:33:01.2601013Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1435' + - '1872' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:23 GMT + - Tue, 13 Jul 2021 09:06:06 GMT expires: - '-1' pragma: @@ -9319,7 +31586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '132' x-powered-by: - ASP.NET status: @@ -9339,28 +31606,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/ABCTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"ProtectionError","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","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1989' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:23 GMT + - Tue, 13 Jul 2021 09:06:07 GMT expires: - '-1' pragma: @@ -9376,7 +31639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '118' x-powered-by: - ASP.NET status: @@ -9396,24 +31659,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/rtewfasd/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2/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":{},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","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/hiagaSrcVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1441' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:25 GMT + - Tue, 13 Jul 2021 09:06:10 GMT expires: - '-1' pragma: @@ -9429,7 +31692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '123' x-powered-by: - ASP.NET status: @@ -9449,28 +31712,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/test1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2048' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:25 GMT + - Tue, 13 Jul 2021 09:06:11 GMT expires: - '-1' pragma: @@ -9486,7 +31745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '122' x-powered-by: - ASP.NET status: @@ -9506,25 +31765,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/TestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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-06-20T21:34:33.8121497Z","protectedItemDataId":"70370838940336","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T21:34:37.6664163Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1893' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:26 GMT + - Tue, 13 Jul 2021 09:06:11 GMT expires: - '-1' pragma: @@ -9540,7 +31798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '122' x-powered-by: - ASP.NET status: @@ -9560,25 +31818,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/testVault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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-06-20T21:02:04.6500629Z","protectedItemDataId":"140739447045620","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T21:02:23.9943354Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1894' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:28 GMT + - Tue, 13 Jul 2021 09:06:13 GMT expires: - '-1' pragma: @@ -9594,7 +31851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '125' x-powered-by: - ASP.NET status: @@ -9614,12 +31871,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XXXTestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9631,7 +31888,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:28 GMT + - Tue, 13 Jul 2021 09:06:13 GMT expires: - '-1' pragma: @@ -9647,7 +31904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '131' x-powered-by: - ASP.NET status: @@ -9667,12 +31924,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/XYZTestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9684,7 +31941,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:30 GMT + - Tue, 13 Jul 2021 09:06:16 GMT expires: - '-1' pragma: @@ -9700,7 +31957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '121' x-powered-by: - ASP.NET status: @@ -9720,28 +31977,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"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":"akkanaseLRSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-28T17:06:57.5973259Z","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":"","policyName":"","lastRecoveryPoint":"2021-01-27T17:08:20.4949135Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1906' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:31 GMT + - Tue, 13 Jul 2021 09:06:17 GMT expires: - '-1' pragma: @@ -9757,7 +32010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '133' x-powered-by: - ASP.NET status: @@ -9777,25 +32030,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/TesCRRABC/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-hana-vm-new","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T15:36:15.3609965Z","protectedItemDataId":"52777015471742","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T15:36:20.7252609Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1884' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:34 GMT + - Tue, 13 Jul 2021 09:06:18 GMT expires: - '-1' pragma: @@ -9811,7 +32063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '126' x-powered-by: - ASP.NET status: @@ -9831,12 +32083,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.RecoveryServices/vaults/VMTestvault55/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9848,7 +32100,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:35 GMT + - Tue, 13 Jul 2021 09:06:18 GMT expires: - '-1' pragma: @@ -9864,7 +32116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '120' x-powered-by: - ASP.NET status: @@ -9884,27 +32136,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/testVaulteus/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3/protectedItems/VM;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","name":"VM;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400309,"title":"UserErrorGenericResourceNotFound","message":"Azure - resource does not exist.","recommendations":["Please make sure required resources - exist. If the issue persists, contact Microsoft support."]}]}},"friendlyName":"asebvtseavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","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-06-13T15:39:53.5244286Z","protectedItemDataId":"244770560","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T15:33:18.6895822Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2014' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:36 GMT + - Tue, 13 Jul 2021 09:06:20 GMT expires: - '-1' pragma: @@ -9920,7 +32169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '116' x-powered-by: - ASP.NET status: @@ -9940,12 +32189,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrg/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -9957,7 +32206,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:36 GMT + - Tue, 13 Jul 2021 09:06:22 GMT expires: - '-1' pragma: @@ -9973,7 +32222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '125' x-powered-by: - ASP.NET status: @@ -9993,12 +32242,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gegRG/providers/Microsoft.RecoveryServices/vaults/Testgegpolicy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10010,7 +32259,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:37 GMT + - Tue, 13 Jul 2021 09:06:22 GMT expires: - '-1' pragma: @@ -10026,7 +32275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '118' x-powered-by: - ASP.NET status: @@ -10046,36 +32295,27 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","name":"VM;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","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":"sdkosdisk3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdkosdisk3","protectionStatus":"Unhealthy","protectionState":"IRPending","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":"2021-03-31T14:55:17.8794396Z","protectedItemDataId":"2079402183","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdkosdisk3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;sdktest2/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;sdktest2","name":"VM;iaasvmcontainerv2;akkanasesdktesting;sdktest2","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":"sdktest2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdktest2","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","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":"2021-03-31T14:55:40.7956559Z","protectedItemDataId":"1650168206","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;sdktest2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdktest2","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","name":"VM;iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"euskosinghaTestVm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/euskosinghaTestVm2","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-07-12T15:41:24.8891272Z","protectedItemDataId":"932509007082163525","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest1;euskosinghatestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/euskosinghaTestVm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:41:27.9792242Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","name":"VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaCRRTestVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaCRRTestVM1","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-07-12T15:41:25.9404342Z","protectedItemDataId":"932509006937819503","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest;euskosinghacrrtestvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaCRRTestVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:41:29.2136367Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting/protectedItems/VM;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","name":"VM;iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaIaasVMTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghIAASTest/providers/Microsoft.Compute/virtualMachines/kosinghaIaasVMTesting","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-07-12T15:44:23.1445331Z","protectedItemDataId":"932509006629252539","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghiaastest;kosinghaiaasvmtesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghIAASTest/providers/Microsoft.Compute/virtualMachines/kosinghaIaasVMTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.RecoveryServices/vaults/eusKosinghaIAASVMTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:44:25.9645904Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '4149' + - '5891' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:38 GMT + - Tue, 13 Jul 2021 09:06:23 GMT expires: - '-1' pragma: @@ -10091,7 +32331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '130' x-powered-by: - ASP.NET status: @@ -10111,24 +32351,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-cli-test-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupProtectedItems?api-version=2021-01-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/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm/protectedItems/VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","name":"VM;iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM","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-07-12T16:38:54.6225031Z","protectedItemDataId":"932350676750930735","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghacrrtest;euskosinghatestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/kosinghaCRRTest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:38:57.762188Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1933' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:39 GMT + - Tue, 13 Jul 2021 09:06:23 GMT expires: - '-1' pragma: @@ -10144,7 +32385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '118' x-powered-by: - ASP.NET status: @@ -10164,12 +32405,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.RecoveryServices/vaults/euskosinghavault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10181,7 +32422,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:40 GMT + - Tue, 13 Jul 2021 09:06:24 GMT expires: - '-1' pragma: @@ -10197,7 +32438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '115' x-powered-by: - ASP.NET status: @@ -10217,24 +32458,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-crr/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupProtectedItems?api-version=2021-01-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/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2/protectedItems/VM;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","name":"VM;iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"eusKosinghaTestVM2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTestVMRG/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM2","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-07-12T15:36:49.6821171Z","protectedItemDataId":"932262716479331247","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghanewtestvmrg;euskosinghatestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTestVMRG/providers/Microsoft.Compute/virtualMachines/eusKosinghaTestVM2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaNewTest/providers/Microsoft.RecoveryServices/vaults/euskosinghaVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:36:52.80637Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1967' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:40 GMT + - Tue, 13 Jul 2021 09:06:26 GMT expires: - '-1' pragma: @@ -10250,7 +32492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '121' x-powered-by: - ASP.NET status: @@ -10270,12 +32512,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuTestRG/providers/Microsoft.RecoveryServices/vaults/TestVaultABC/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10287,7 +32529,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:41 GMT + - Tue, 13 Jul 2021 09:06:26 GMT expires: - '-1' pragma: @@ -10303,7 +32545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '121' x-powered-by: - ASP.NET status: @@ -10323,12 +32565,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pikumarCrashJob/providers/Microsoft.RecoveryServices/vaults/mabcrashjobtesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10340,7 +32582,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:41 GMT + - Tue, 13 Jul 2021 09:06:27 GMT expires: - '-1' pragma: @@ -10356,7 +32598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '120' x-powered-by: - ASP.NET status: @@ -10376,12 +32618,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault219/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10393,7 +32635,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:42 GMT + - Tue, 13 Jul 2021 09:06:29 GMT expires: - '-1' pragma: @@ -10409,7 +32651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '117' x-powered-by: - ASP.NET status: @@ -10429,12 +32671,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.RecoveryServices/vaults/vault854/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10446,7 +32688,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:43 GMT + - Tue, 13 Jul 2021 09:06:31 GMT expires: - '-1' pragma: @@ -10462,7 +32704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '123' x-powered-by: - ASP.NET status: @@ -10482,12 +32724,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PublicpreviewRG/providers/Microsoft.RecoveryServices/vaults/PublicPreviewVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10499,7 +32741,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:43 GMT + - Tue, 13 Jul 2021 09:06:32 GMT expires: - '-1' pragma: @@ -10515,7 +32757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '113' x-powered-by: - ASP.NET status: @@ -10535,12 +32777,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/ResourceGuardTesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10552,7 +32794,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:44 GMT + - Tue, 13 Jul 2021 09:06:33 GMT expires: - '-1' pragma: @@ -10568,7 +32810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '122' x-powered-by: - ASP.NET status: @@ -10588,12 +32830,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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-restore-disk-rg/providers/Microsoft.RecoveryServices/vaults/deletevault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10605,7 +32847,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:44 GMT + - Tue, 13 Jul 2021 09:06:33 GMT expires: - '-1' pragma: @@ -10621,7 +32863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '117' x-powered-by: - ASP.NET status: @@ -10641,12 +32883,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/deleteme/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10658,7 +32900,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:45 GMT + - Tue, 13 Jul 2021 09:06:35 GMT expires: - '-1' pragma: @@ -10674,7 +32916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '131' x-powered-by: - ASP.NET status: @@ -10694,24 +32936,26 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault42/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupProtectedItems?api-version=2021-01-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/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shjoshi;my-vm/protectedItems/VM;iaasvmcontainerv2;shjoshi;my-vm","name":"VM;iaasvmcontainerv2;shjoshi;my-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"My-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/My-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":"2021-07-12T19:43:58.0393634Z","protectedItemDataId":"974177814","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shjoshi;my-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/My-vm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupPolicies/My-policy","policyName":"My-policy","lastRecoveryPoint":"2021-07-12T19:44:02.0523008Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shjoshi;shreyansh-machine/protectedItems/VM;iaasvmcontainerv2;shjoshi;shreyansh-machine","name":"VM;iaasvmcontainerv2;shjoshi;shreyansh-machine","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"Shreyansh-machine","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/Shreyansh-machine","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-07-12T15:08:06.8425749Z","protectedItemDataId":"1541352777","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shjoshi;shreyansh-machine","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.Compute/virtualMachines/Shreyansh-machine","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T15:08:10.0011378Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3592' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:45 GMT + - Tue, 13 Jul 2021 09:06:35 GMT expires: - '-1' pragma: @@ -10727,7 +32971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '120' x-powered-by: - ASP.NET status: @@ -10747,12 +32991,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/My-vault-2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10764,7 +33008,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:46 GMT + - Tue, 13 Jul 2021 09:06:36 GMT expires: - '-1' pragma: @@ -10780,7 +33024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '117' x-powered-by: - ASP.NET status: @@ -10800,12 +33044,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shjoshi/providers/Microsoft.RecoveryServices/vaults/Mycheckingvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10817,7 +33061,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:46 GMT + - Tue, 13 Jul 2021 09:06:37 GMT expires: - '-1' pragma: @@ -10833,7 +33077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '120' x-powered-by: - ASP.NET status: @@ -10853,12 +33097,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sumittestsxxbbdwvakp2q/providers/Microsoft.RecoveryServices/vaults/TesSumit5-managedrsvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10870,7 +33114,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:47 GMT + - Tue, 13 Jul 2021 09:06:37 GMT expires: - '-1' pragma: @@ -10886,7 +33130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '114' x-powered-by: - ASP.NET status: @@ -10906,25 +33150,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingCrrLrs/providers/Microsoft.RecoveryServices/vaults/TestingCRRLrs/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp/protectedItems/VM;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","name":"VM;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm4vvrp","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.Compute/virtualMachines/clitest-vm4vvrp","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T07:35:58.8301725Z","protectedItemDataId":"70369788043934","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.Compute/virtualMachines/clitest-vm4vvrp","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T07:36:02.191389Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2362' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:47 GMT + - Tue, 13 Jul 2021 09:06:38 GMT expires: - '-1' pragma: @@ -10940,7 +33183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '121' x-powered-by: - ASP.NET status: @@ -10960,24 +33203,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvault/providers/Microsoft.RecoveryServices/vaults/testvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184820639131","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1988' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:47 GMT + - Tue, 13 Jul 2021 09:06:39 GMT expires: - '-1' pragma: @@ -10993,7 +33236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '122' x-powered-by: - ASP.NET status: @@ -11007,30 +33250,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184820639131","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;TLSTEST;TLSTest/protectedItems/VM;iaasvmcontainerv2;TLSTEST;TLSTest","name":"VM;iaasvmcontainerv2;TLSTEST;TLSTest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"TLSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.Compute/virtualMachines/TLSTest","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-07-12T19:35:39.6258294Z","protectedItemDataId":"281475504455340","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;TLSTEST;TLSTest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.Compute/virtualMachines/TLSTest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TLSTest/providers/Microsoft.RecoveryServices/vaults/vault441/backupPolicies/DailyPolicy-kmys2f5l","policyName":"DailyPolicy-kmys2f5l","lastRecoveryPoint":"2021-07-12T19:35:42.2531Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1988' + - '1767' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:48 GMT + - Tue, 13 Jul 2021 09:06:41 GMT expires: - '-1' pragma: @@ -11046,67 +33290,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '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.Compute/virtualMachines/clitest-vm000003", - "policyId": "", "protectedItemType": "Microsoft.Compute/virtualMachines", "protectionState": - "ProtectionStopped"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive - Content-Length: - - '356' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupProtectedItems?api-version=2021-01-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/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-2/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-2","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-2","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":"2021-06-09T17:10:17.6736223Z","protectedItemDataId":"1949919164","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-2","policyId":"","policyName":"","lastRecoveryPoint":"2021-06-09T17:10:20.9495072Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK","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-07-12T17:07:05.7468853Z","protectedItemDataId":"1468227706","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T17:08:18.7398351Z","isArchiveEnabled":false}}]}' headers: - 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/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '3421' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:05:49 GMT + - Tue, 13 Jul 2021 09:06: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + 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: @@ -11115,30 +33359,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-3/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-3","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-3","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-07-12T20:36:00.6898743Z","protectedItemDataId":"932966404226959648","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:36:03.8178063Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1817' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:50 GMT + - Tue, 13 Jul 2021 09:06:42 GMT expires: - '-1' pragma: @@ -11154,7 +33399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '116' x-powered-by: - ASP.NET status: @@ -11168,30 +33413,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-4/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-4","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-4","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-4","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-07-12T14:36:09.894337Z","protectedItemDataId":"80838424","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-3/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T14:36:13.7587562Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1806' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:51 GMT + - Tue, 13 Jul 2021 09:06:45 GMT expires: - '-1' pragma: @@ -11207,7 +33453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '125' x-powered-by: - ASP.NET status: @@ -11221,30 +33467,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vkatyal;testvmvk-5/protectedItems/VM;iaasvmcontainerv2;vkatyal;testvmvk-5","name":"VM;iaasvmcontainerv2;vkatyal;testvmvk-5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testVMVK-5","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-5","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-07-12T18:09:28.8632353Z","protectedItemDataId":"933107141561712724","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;vkatyal;testvmvk-5","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.Compute/virtualMachines/testVMVK-5","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-4/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T18:09:32.1188927Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1817' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:52 GMT + - Tue, 13 Jul 2021 09:06:46 GMT expires: - '-1' pragma: @@ -11260,7 +33507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '115' x-powered-by: - ASP.NET status: @@ -11274,30 +33521,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-5/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:53 GMT + - Tue, 13 Jul 2021 09:06:46 GMT expires: - '-1' pragma: @@ -11313,7 +33560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '119' x-powered-by: - ASP.NET status: @@ -11327,30 +33574,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-6/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:54 GMT + - Tue, 13 Jul 2021 09:06:48 GMT expires: - '-1' pragma: @@ -11366,7 +33613,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '123' x-powered-by: - ASP.NET status: @@ -11380,30 +33627,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vkatyal/providers/Microsoft.RecoveryServices/vaults/testVaultVK-9/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:56 GMT + - Tue, 13 Jul 2021 09:06:48 GMT expires: - '-1' pragma: @@ -11419,7 +33666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '129' x-powered-by: - ASP.NET status: @@ -11433,30 +33680,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestMadhuDeRG/providers/Microsoft.RecoveryServices/vaults/TestMadhuDeVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:57 GMT + - Tue, 13 Jul 2021 09:06:49 GMT expires: - '-1' pragma: @@ -11472,7 +33719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '116' x-powered-by: - ASP.NET status: @@ -11486,30 +33733,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPE/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:58 GMT + - Tue, 13 Jul 2021 09:06:50 GMT expires: - '-1' pragma: @@ -11525,7 +33772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '120' x-powered-by: - ASP.NET status: @@ -11539,30 +33786,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/CrrTestJPW/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"InProgress","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:05:59 GMT + - Tue, 13 Jul 2021 09:06:51 GMT expires: - '-1' pragma: @@ -11578,7 +33825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '119' x-powered-by: - ASP.NET status: @@ -11592,30 +33839,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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ed7003be-0e22-4ddf-8bb8-d93a679e75b2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/prnookal-aueast/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","name":"ed7003be-0e22-4ddf-8bb8-d93a679e75b2","status":"Succeeded","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"2021-06-21T14:05:49.8500586Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"82e75f25-97c3-40fb-bd5e-ff1e3ab363ee"}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '304' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:00 GMT + - Tue, 13 Jul 2021 09:06:52 GMT expires: - '-1' pragma: @@ -11631,7 +33878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '119' x-powered-by: - ASP.NET status: @@ -11645,38 +33892,37 @@ 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 --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/82e75f25-97c3-40fb-bd5e-ff1e3ab363ee?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupProtectedItems?api-version=2021-01-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/82e75f25-97c3-40fb-bd5e-ff1e3ab363ee","name":"82e75f25-97c3-40fb-bd5e-ff1e3ab363ee","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.8164279S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2021-06-21T14:05:49.8500586Z","endTime":"2021-06-21T14:06:00.6664865Z","activityId":"c736d621-d299-11eb-a69a-c8f750f92764"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanase_group;akkanase/protectedItems/VM;iaasvmcontainerv2;akkanase_group;akkanase","name":"VM;iaasvmcontainerv2;akkanase_group;akkanase","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":"akkanase","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.Compute/virtualMachines/akkanase","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-07-12T17:39:37.396353Z","protectedItemDataId":"5639016908855234954","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanase_group;akkanase","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.Compute/virtualMachines/akkanase","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase_group/providers/Microsoft.RecoveryServices/vaults/vault171/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T17:39:40.2625846Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '953' + - '2001' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:01 GMT + - Tue, 13 Jul 2021 09:06: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: @@ -11686,7 +33932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '112' x-powered-by: - ASP.NET status: @@ -11700,30 +33946,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184820639131","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":"","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;rg1;jakavetvm2/protectedItems/VM;iaasvmcontainerv2;rg1;jakavetvm2","name":"VM;iaasvmcontainerv2;rg1;jakavetvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"jakavetVM2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/jakavetVM2","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-07-12T12:31:23.3295897Z","protectedItemDataId":"87962247001914","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;rg1;jakavetvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/jakavetVM2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault24/backupPolicies/DailyPolicy-kqbpndhz","policyName":"DailyPolicy-kqbpndhz","lastRecoveryPoint":"2021-07-12T12:31:27.5320821Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1743' + - '1744' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:01 GMT + - Tue, 13 Jul 2021 09:06:55 GMT expires: - '-1' pragma: @@ -11739,7 +33986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '125' x-powered-by: - ASP.NET status: @@ -11753,31 +34000,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184820639131","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":"","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinkrg;jakavetrg/protectedItems/VM;iaasvmcontainerv2;abhinkrg;jakavetrg","name":"VM;iaasvmcontainerv2;abhinkrg;jakavetrg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"jakavetRG","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/jakavetRG","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-07-12T19:31:50.34115Z","protectedItemDataId":"193515774031053","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinkrg;jakavetrg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/jakavetRG","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:31:53.4389342Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.RecoveryServices/vaults/vault306/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2/protectedItems/VM;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","name":"VM;iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sakaarhotfix2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Compute/virtualMachines/sakaarhotfix2","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"193515390883961","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sakaarhotfix2_group;sakaarhotfix2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Compute/virtualMachines/sakaarhotfix2","policyId":"","policyName":"","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1743' + - '3105' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:02 GMT + - Tue, 13 Jul 2021 09:06:56 GMT expires: - '-1' pragma: @@ -11793,7 +34040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '121' x-powered-by: - ASP.NET status: @@ -11807,50 +34054,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Vsarg-new/providers/Microsoft.RecoveryServices/vaults/vsarg-rsv/backupProtectedItems?api-version=2021-01-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/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:06:03 GMT + - Tue, 13 Jul 2021 09:06:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + 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: @@ -11859,31 +34107,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/MUADemoVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:02 GMT + - Tue, 13 Jul 2021 09:06:58 GMT expires: - '-1' pragma: @@ -11899,7 +34146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '115' x-powered-by: - ASP.NET status: @@ -11913,31 +34160,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newMUAVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:04 GMT + - Tue, 13 Jul 2021 09:07:00 GMT expires: - '-1' pragma: @@ -11953,7 +34199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '111' x-powered-by: - ASP.NET status: @@ -11967,31 +34213,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newvault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:05 GMT + - Tue, 13 Jul 2021 09:07:01 GMT expires: - '-1' pragma: @@ -12007,7 +34252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '118' x-powered-by: - ASP.NET status: @@ -12021,31 +34266,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/newVault3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:06 GMT + - Tue, 13 Jul 2021 09:07:02 GMT expires: - '-1' pragma: @@ -12061,7 +34305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '110' x-powered-by: - ASP.NET status: @@ -12075,31 +34319,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/MUADemoVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:07 GMT + - Tue, 13 Jul 2021 09:07:04 GMT expires: - '-1' pragma: @@ -12115,7 +34358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '122' x-powered-by: - ASP.NET status: @@ -12129,31 +34372,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/muaVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:08 GMT + - Tue, 13 Jul 2021 09:07:06 GMT expires: - '-1' pragma: @@ -12169,7 +34411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '130' x-powered-by: - ASP.NET status: @@ -12183,31 +34425,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:10 GMT + - Tue, 13 Jul 2021 09:07:07 GMT expires: - '-1' pragma: @@ -12223,7 +34464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '128' x-powered-by: - ASP.NET status: @@ -12237,31 +34478,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newVault4/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:12 GMT + - Tue, 13 Jul 2021 09:07:09 GMT expires: - '-1' pragma: @@ -12277,7 +34517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '114' x-powered-by: - ASP.NET status: @@ -12291,31 +34531,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.RecoveryServices/vaults/hakavetMUAVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:13 GMT + - Tue, 13 Jul 2021 09:07:11 GMT expires: - '-1' pragma: @@ -12331,7 +34570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '124' x-powered-by: - ASP.NET status: @@ -12345,31 +34584,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/wcusvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:14 GMT + - Tue, 13 Jul 2021 09:07:11 GMT expires: - '-1' pragma: @@ -12385,7 +34623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '123' x-powered-by: - ASP.NET status: @@ -12399,31 +34637,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupAdminMadhudeRG/providers/Microsoft.RecoveryServices/vaults/MadhuDeMFATestWCUS/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:16 GMT + - Tue, 13 Jul 2021 09:07:13 GMT expires: - '-1' pragma: @@ -12439,7 +34676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '125' x-powered-by: - ASP.NET status: @@ -12453,31 +34690,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrossTenantMadhudeRG/providers/Microsoft.RecoveryServices/vaults/CrossTenantVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:17 GMT + - Tue, 13 Jul 2021 09:07:15 GMT expires: - '-1' pragma: @@ -12493,7 +34729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '120' x-powered-by: - ASP.NET status: @@ -12507,31 +34743,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mfa_mua_rg/providers/Microsoft.RecoveryServices/vaults/mfamuarsvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:18 GMT + - Tue, 13 Jul 2021 09:07:16 GMT expires: - '-1' pragma: @@ -12547,7 +34782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '117' x-powered-by: - ASP.NET status: @@ -12561,31 +34796,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGuardTesting/providers/Microsoft.RecoveryServices/vaults/resourceGuardTesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:19 GMT + - Tue, 13 Jul 2021 09:07:19 GMT expires: - '-1' pragma: @@ -12601,7 +34835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '122' x-powered-by: - ASP.NET status: @@ -12615,31 +34849,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsMuaMfaRg/providers/Microsoft.RecoveryServices/vaults/UtsMuaVault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:20 GMT + - Tue, 13 Jul 2021 09:07:19 GMT expires: - '-1' pragma: @@ -12655,7 +34888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '124' x-powered-by: - ASP.NET status: @@ -12669,31 +34902,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WCUSMadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WCUSMadhuDeVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:22 GMT + - Tue, 13 Jul 2021 09:07:20 GMT expires: - '-1' pragma: @@ -12709,7 +34941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '129' x-powered-by: - ASP.NET status: @@ -12723,31 +34955,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;viveksisql1;viveksisql1/protectedItems/VM;iaasvmcontainerv2;viveksisql1;viveksisql1","name":"VM;iaasvmcontainerv2;viveksisql1;viveksisql1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"viveksisql1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Compute/virtualMachines/viveksisql1","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-07-12T20:03:09.1382648Z","protectedItemDataId":"7660728519602961543","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;viveksisql1;viveksisql1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Compute/virtualMachines/viveksisql1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.RecoveryServices/vaults/WUS2MadhuDeCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:03:18.0127714Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1875' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:23 GMT + - Tue, 13 Jul 2021 09:07:20 GMT expires: - '-1' pragma: @@ -12763,7 +34995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '121' x-powered-by: - ASP.NET status: @@ -12777,31 +35009,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM/protectedItems/VM;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","name":"VM;iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"MadhuCrrTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCrrTestRG/providers/Microsoft.Compute/virtualMachines/MadhuCrrTestVM","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-07-12T19:37:28.4674346Z","protectedItemDataId":"7660693336963666473","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;MADHUDECRRTESTRG;MadhuCrrTestVM","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCrrTestRG/providers/Microsoft.Compute/virtualMachines/MadhuCrrTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal/providers/Microsoft.RecoveryServices/vaults/vault493/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:37:31.7418845Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1888' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:24 GMT + - Tue, 13 Jul 2021 09:07:22 GMT expires: - '-1' pragma: @@ -12817,7 +35049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '123' x-powered-by: - ASP.NET status: @@ -12831,31 +35063,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrg/providers/Microsoft.RecoveryServices/vaults/zakVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:25 GMT + - Tue, 13 Jul 2021 09:07:43 GMT expires: - '-1' pragma: @@ -12871,7 +35102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '119' x-powered-by: - ASP.NET status: @@ -12885,31 +35116,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;uksstamptesting;ukskosinghavm/protectedItems/VM;iaasvmcontainerv2;uksstamptesting;ukskosinghavm","name":"VM;iaasvmcontainerv2;uksstamptesting;ukskosinghavm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"uksKosinghaVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.Compute/virtualMachines/uksKosinghaVM","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-07-12T18:33:51.6839112Z","protectedItemDataId":"8565864083995367194","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;uksstamptesting;ukskosinghavm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.Compute/virtualMachines/uksKosinghaVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting/providers/Microsoft.RecoveryServices/vaults/SourceVault/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T18:33:54.9924989Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1895' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:26 GMT + - Tue, 13 Jul 2021 09:07:45 GMT expires: - '-1' pragma: @@ -12925,7 +35156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '117' x-powered-by: - ASP.NET status: @@ -12939,31 +35170,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB/protectedItems/VM;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","name":"VM;iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaUKSTest-ukw-10GB","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Compute/virtualMachines/kosinghaUKSTest-ukw-10GB","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-07-12T19:34:48.1563262Z","protectedItemDataId":"8111088483869065758","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;uksStampTesting1;kosinghaUKSTest-ukw-10GB","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Compute/virtualMachines/kosinghaUKSTest-ukw-10GB","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-new/providers/Microsoft.RecoveryServices/vaults/vault762/backupPolicies/DailyPolicy-kn4m00cu","policyName":"DailyPolicy-kn4m00cu","lastRecoveryPoint":"2021-07-12T19:34:51.0246117Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1957' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:28 GMT + - Tue, 13 Jul 2021 09:07:47 GMT expires: - '-1' pragma: @@ -12979,7 +35210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '129' x-powered-by: - ASP.NET status: @@ -12993,31 +35224,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgKRC-otds-rraj/providers/Microsoft.RecoveryServices/vaults/vault108/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:29 GMT + - Tue, 13 Jul 2021 09:07:49 GMT expires: - '-1' pragma: @@ -13033,7 +35263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '124' x-powered-by: - ASP.NET status: @@ -13047,31 +35277,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/swtestvault100/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:30 GMT + - Tue, 13 Jul 2021 09:07:50 GMT expires: - '-1' pragma: @@ -13087,7 +35316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '124' x-powered-by: - ASP.NET status: @@ -13101,31 +35330,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR/providers/Microsoft.RecoveryServices/vaults/hiagaCRRvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:31 GMT + - Tue, 13 Jul 2021 09:07:51 GMT expires: - '-1' pragma: @@ -13141,7 +35369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '117' x-powered-by: - ASP.NET status: @@ -13155,31 +35383,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.RecoveryServices/vaults/abhinkszw/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:33 GMT + - Tue, 13 Jul 2021 09:07:53 GMT expires: - '-1' pragma: @@ -13195,7 +35422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '121' x-powered-by: - ASP.NET status: @@ -13209,31 +35436,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;RGPETEST;VMPeTest1/protectedItems/VM;iaasvmcontainerv2;RGPETEST;VMPeTest1","name":"VM;iaasvmcontainerv2;RGPETEST;VMPeTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"VMPeTest1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.Compute/virtualMachines/VMPeTest1","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-07-12T23:06:51.06571Z","protectedItemDataId":"52777393879077","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;RGPETEST;VMPeTest1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.Compute/virtualMachines/VMPeTest1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/testvaultccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T23:06:54.5033338Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1783' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:34 GMT + - Tue, 13 Jul 2021 09:07:54 GMT expires: - '-1' pragma: @@ -13249,7 +35476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '109' x-powered-by: - ASP.NET status: @@ -13263,31 +35490,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","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":"ldkosignha32","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosignha32","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-27T20:39:29.5296808Z","protectedItemDataId":"17592761839680","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;ldkosignha32","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosignha32","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti/protectedItems/VM;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","name":"VM;iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ldkosneeti","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosneeti","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-27T20:38:53.5773189Z","protectedItemDataId":"17592663061130","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;KOSINGHAIAASVMTESTING;ldkosneeti","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ldkosneeti","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnrg1/providers/Microsoft.RecoveryServices/vaults/amchandnVault1502B/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-27T20:38:58.2619668Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '3949' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:35 GMT + - Tue, 13 Jul 2021 09:07:54 GMT expires: - '-1' pragma: @@ -13303,7 +35534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '122' x-powered-by: - ASP.NET status: @@ -13317,31 +35548,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar0107/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:36 GMT + - Tue, 13 Jul 2021 09:07:55 GMT expires: - '-1' pragma: @@ -13357,7 +35587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '116' x-powered-by: - ASP.NET status: @@ -13371,31 +35601,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar0203/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:38 GMT + - Tue, 13 Jul 2021 09:07:55 GMT expires: - '-1' pragma: @@ -13411,7 +35640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '115' x-powered-by: - ASP.NET status: @@ -13425,31 +35654,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar050315/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:39 GMT + - Tue, 13 Jul 2021 09:07:56 GMT expires: - '-1' pragma: @@ -13465,7 +35693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '123' x-powered-by: - ASP.NET status: @@ -13479,31 +35707,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07051/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:40 GMT + - Tue, 13 Jul 2021 09:07:57 GMT expires: - '-1' pragma: @@ -13519,7 +35746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '113' x-powered-by: - ASP.NET status: @@ -13533,31 +35760,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07052/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:41 GMT + - Tue, 13 Jul 2021 09:07:57 GMT expires: - '-1' pragma: @@ -13573,7 +35799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '116' x-powered-by: - ASP.NET status: @@ -13587,31 +35813,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar123/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:42 GMT + - Tue, 13 Jul 2021 09:07:58 GMT expires: - '-1' pragma: @@ -13627,7 +35852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '139' x-powered-by: - ASP.NET status: @@ -13641,31 +35866,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar20073/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:44 GMT + - Tue, 13 Jul 2021 09:07:59 GMT expires: - '-1' pragma: @@ -13681,7 +35905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '119' x-powered-by: - ASP.NET status: @@ -13695,31 +35919,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar23071/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:45 GMT + - Tue, 13 Jul 2021 09:07:59 GMT expires: - '-1' pragma: @@ -13735,7 +35958,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '119' x-powered-by: - ASP.NET status: @@ -13749,31 +35972,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewCCYNewVault3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:46 GMT + - Tue, 13 Jul 2021 09:08:00 GMT expires: - '-1' pragma: @@ -13789,7 +36011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '119' x-powered-by: - ASP.NET status: @@ -13803,31 +36025,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","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":"archsqlccyvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm1","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-07-13T05:34:30.9771057Z","protectedItemDataId":"17592741580724","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:34:34.5427367Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2069' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:47 GMT + - Tue, 13 Jul 2021 09:08:00 GMT expires: - '-1' pragma: @@ -13843,7 +36065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '121' x-powered-by: - ASP.NET status: @@ -13857,31 +36079,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4/protectedItems/VM;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","name":"VM;iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"archsqlccyvm4","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm4","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-07-12T19:35:07.3184603Z","protectedItemDataId":"70370698966816","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ArchiveResourceGroup;archsqlccyvm4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/vault891/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:35:11.2114494Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1897' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:49 GMT + - Tue, 13 Jul 2021 09:08:01 GMT expires: - '-1' pragma: @@ -13897,7 +36119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '120' x-powered-by: - ASP.NET status: @@ -13911,31 +36133,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtesting2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:50 GMT + - Tue, 13 Jul 2021 09:08:03 GMT expires: - '-1' pragma: @@ -13951,7 +36172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '116' x-powered-by: - ASP.NET status: @@ -13965,31 +36186,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:51 GMT + - Tue, 13 Jul 2021 09:08:03 GMT expires: - '-1' pragma: @@ -14005,7 +36225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '123' x-powered-by: - ASP.NET status: @@ -14019,31 +36239,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:52 GMT + - Tue, 13 Jul 2021 09:08:04 GMT expires: - '-1' pragma: @@ -14059,7 +36278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' + - '115' x-powered-by: - ASP.NET status: @@ -14073,31 +36292,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmaskarrg/providers/Microsoft.RecoveryServices/vaults/cmkmhsmtestingccy4/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:54 GMT + - Tue, 13 Jul 2021 09:08:05 GMT expires: - '-1' pragma: @@ -14113,7 +36331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' + - '114' x-powered-by: - ASP.NET status: @@ -14127,31 +36345,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupadminTestRG/providers/Microsoft.RecoveryServices/vaults/ResourceGuardMadhuDeVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:55 GMT + - Tue, 13 Jul 2021 09:08:05 GMT expires: - '-1' pragma: @@ -14167,7 +36384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' + - '130' x-powered-by: - ASP.NET status: @@ -14181,31 +36398,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault549/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:56 GMT + - Tue, 13 Jul 2021 09:08:06 GMT expires: - '-1' pragma: @@ -14221,7 +36437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' + - '121' x-powered-by: - ASP.NET status: @@ -14235,31 +36451,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"archsqlccyvm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","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-07-12T18:09:01.8179778Z","protectedItemDataId":"70369333980246","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoProdVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T18:09:05.3606036Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1901' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:57 GMT + - Tue, 13 Jul 2021 09:08:07 GMT expires: - '-1' pragma: @@ -14275,7 +36491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' + - '108' x-powered-by: - ASP.NET status: @@ -14289,31 +36505,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoMabRg/providers/Microsoft.RecoveryServices/vaults/ContosoTestVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:06:59 GMT + - Tue, 13 Jul 2021 09:08:07 GMT expires: - '-1' pragma: @@ -14329,7 +36544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' + - '128' x-powered-by: - ASP.NET status: @@ -14343,31 +36558,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghacrrBill/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:00 GMT + - Tue, 13 Jul 2021 09:08:08 GMT expires: - '-1' pragma: @@ -14383,7 +36597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' + - '116' x-powered-by: - ASP.NET status: @@ -14397,31 +36611,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrbmsrunnercanarywestus/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:01 GMT + - Tue, 13 Jul 2021 09:08:08 GMT expires: - '-1' pragma: @@ -14437,7 +36650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' + - '118' x-powered-by: - ASP.NET status: @@ -14451,31 +36664,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.RecoveryServices/vaults/dchandrPostGress/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:03 GMT + - Tue, 13 Jul 2021 09:08:08 GMT expires: - '-1' pragma: @@ -14491,7 +36703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' + - '128' x-powered-by: - ASP.NET status: @@ -14505,31 +36717,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:05 GMT + - Tue, 13 Jul 2021 09:08:09 GMT expires: - '-1' pragma: @@ -14545,7 +36756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' + - '122' x-powered-by: - ASP.NET status: @@ -14559,31 +36770,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupRestore/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:06 GMT + - Tue, 13 Jul 2021 09:08:10 GMT expires: - '-1' pragma: @@ -14599,7 +36809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '115' x-powered-by: - ASP.NET status: @@ -14613,31 +36823,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/CRRTestSourceVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:07 GMT + - Tue, 13 Jul 2021 09:08:10 GMT expires: - '-1' pragma: @@ -14653,7 +36862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' + - '127' x-powered-by: - ASP.NET status: @@ -14667,31 +36876,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallavm1_group;gaallavm1/protectedItems/VM;iaasvmcontainerv2;gaallavm1_group;gaallavm1","name":"VM;iaasvmcontainerv2;gaallavm1_group;gaallavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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":"gaallaVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallaVM1_group/providers/Microsoft.Compute/virtualMachines/gaallaVM1","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":"2021-03-11T11:40:58.8973948Z","protectedItemDataId":"140739491633921","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallavm1_group;gaallavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallaVM1_group/providers/Microsoft.Compute/virtualMachines/gaallaVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.RecoveryServices/vaults/MercuryCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-25T21:40:12.9822444Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2342' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:08 GMT + - Tue, 13 Jul 2021 09:08:11 GMT expires: - '-1' pragma: @@ -14707,7 +36921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '127' x-powered-by: - ASP.NET status: @@ -14721,31 +36935,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:10 GMT + - Tue, 13 Jul 2021 09:08:12 GMT expires: - '-1' pragma: @@ -14761,7 +36974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '113' x-powered-by: - ASP.NET status: @@ -14775,31 +36988,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;archiveresourcegroup;archhanavm1/protectedItems/VM;iaasvmcontainerv2;archiveresourcegroup;archhanavm1","name":"VM;iaasvmcontainerv2;archiveresourcegroup;archhanavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ArchHanaVM1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/ArchHanaVM1","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-07-13T02:33:21.3152141Z","protectedItemDataId":"52778690893293","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Compute/virtualMachines/ArchHanaVM1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:33:25.1677645Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","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":"backuptesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/backuptesting","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-07-13T02:34:40.3970576Z","protectedItemDataId":"52778162276529","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;backuptesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/backuptesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:34:43.2463085Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaBillTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaBillTest","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-07-13T02:38:44.4744731Z","protectedItemDataId":"52776782651421","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghabilltest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaBillTest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:38:51.3414655Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400003,"title":"RestoreOperationFailed","message":"Restore + failed with an internal error.","recommendations":["Please retry the operation + in a few minutes. If the problem persists, please contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghaVm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaVm1","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-07-13T02:39:00.8007104Z","protectedItemDataId":"52777567164889","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghaVm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:39:03.3883906Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","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":"kosinghavm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm2","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-05-19T02:35:41.5155903Z","protectedItemDataId":"52777155670626","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-05-19T02:35:44.1583667Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3/protectedItems/VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","name":"VM;iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","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":"kosinghavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm3","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-07-13T02:31:59.7080571Z","protectedItemDataId":"52777797998217","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;iaasvmdrilltesting;kosinghavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasvmDrillTesting/providers/Microsoft.RecoveryServices/vaults/IaasvmDrillVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T02:32:02.7766988Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '12273' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:11 GMT + - Tue, 13 Jul 2021 09:08:13 GMT expires: - '-1' pragma: @@ -14815,7 +37035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' + - '115' x-powered-by: - ASP.NET status: @@ -14829,31 +37049,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400199,"title":"VMCreationTimeOutStorageErrorV2","message":"Create + VM took very long time and got timed out","recommendations":["Please retry + the operation after some time. If problem persists, please contact Microsoft + support."]}]}},"friendlyName":"dg123","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/dg123","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-07-12T12:37:18.7493514Z","protectedItemDataId":"17592941450352","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;dg123","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/dg123","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG1/providers/Microsoft.RecoveryServices/vaults/vault405/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-06T15:19:30.3189613Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2013' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:12 GMT + - Tue, 13 Jul 2021 09:08:13 GMT expires: - '-1' pragma: @@ -14869,7 +37092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' + - '126' x-powered-by: - ASP.NET status: @@ -14883,31 +37106,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ccy-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd/protectedItems/VM;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","name":"VM;iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","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":"ld-kosingha-30-hdd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ld-kosingha-30-hdd","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":"2021-01-27T23:40:58.201612Z","protectedItemDataId":"17593919300788","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaiaasvmtesting;ld-kosingha-30-hdd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/ld-kosingha-30-hdd","policyId":"","policyName":"","lastRecoveryPoint":"2021-01-27T23:41:01.189038Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1932' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:13 GMT + - Tue, 13 Jul 2021 09:08:14 GMT expires: - '-1' pragma: @@ -14923,7 +37146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' + - '119' x-powered-by: - ASP.NET status: @@ -14937,31 +37160,37 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win/protectedItems/VM;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","name":"VM;iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","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":"ld-kosingha-ccy-8tb-hdd-win","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ccy-8tb-hdd-win","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400240,"title":"IaasVmHealthYellowDefault","message":"Backup + pre-checks for this virtual machine completed with warnings.","recommendations":["There + are no recommendations available at the moment to ensure successful backups. + Check Backup pre-check status after the next backup and perform any suggested + or required actions"]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-07-12T19:40:49.8493207Z","protectedItemDataId":"70370189974668","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;LARGEDISKIAASVMTEST;ld-kosingha-ccy-8tb-hdd-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ccy-8tb-hdd-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/vault139/backupPolicies/DailyPolicy-kn4grij7","policyName":"DailyPolicy-kn4grij7","lastRecoveryPoint":"2021-07-05T20:05:27.1175874Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2431' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:15 GMT + - Tue, 13 Jul 2021 09:08:15 GMT expires: - '-1' pragma: @@ -14977,7 +37206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' + - '120' x-powered-by: - ASP.NET status: @@ -14991,31 +37220,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/MFATest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:16 GMT + - Tue, 13 Jul 2021 09:08:16 GMT expires: - '-1' pragma: @@ -15031,7 +37259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' + - '113' x-powered-by: - ASP.NET status: @@ -15045,31 +37273,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeCCY/providers/Microsoft.RecoveryServices/vaults/TestVaultABC/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:18 GMT + - Tue, 13 Jul 2021 09:08:16 GMT expires: - '-1' pragma: @@ -15085,7 +37312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' + - '122' x-powered-by: - ASP.NET status: @@ -15099,31 +37326,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeResourceGuardTest/providers/Microsoft.RecoveryServices/vaults/MadhuDeResourceGuardTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:19 GMT + - Tue, 13 Jul 2021 09:08:18 GMT expires: - '-1' pragma: @@ -15139,7 +37365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' + - '121' x-powered-by: - ASP.NET status: @@ -15153,31 +37379,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/NewVaultForResourceMove/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:20 GMT + - Tue, 13 Jul 2021 09:08:19 GMT expires: - '-1' pragma: @@ -15193,7 +37418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' + - '114' x-powered-by: - ASP.NET status: @@ -15207,31 +37432,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-t1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"InProgress","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:07:22 GMT + - Tue, 13 Jul 2021 09:08:19 GMT expires: - '-1' pragma: @@ -15247,7 +37471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' + - '114' x-powered-by: - ASP.NET status: @@ -15261,31 +37485,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ae33f853-fdb2-416f-b3eb-f935b28eda7e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault4/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","name":"ae33f853-fdb2-416f-b3eb-f935b28eda7e","status":"Succeeded","startTime":"2021-06-21T14:06:03.2737734Z","endTime":"2021-06-21T14:06:03.2737734Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ef51a7e5-aeb9-4a5b-b0b2-85fa3f12d6af"}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '304' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:48 GMT + - Tue, 13 Jul 2021 09:08:21 GMT expires: - '-1' pragma: @@ -15301,7 +37524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '118' x-powered-by: - ASP.NET status: @@ -15315,39 +37538,42 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ef51a7e5-aeb9-4a5b-b0b2-85fa3f12d6af?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupProtectedItems?api-version=2021-01-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/ef51a7e5-aeb9-4a5b-b0b2-85fa3f12d6af","name":"ef51a7e5-aeb9-4a5b-b0b2-85fa3f12d6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.99477S","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-06-21T14:06:03.2737734Z","endTime":"2021-06-21T14:07:55.2685434Z","activityId":"cf8ca8f6-d299-11eb-9005-c8f750f92764"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1/protectedItems/VM;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","name":"VM;iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","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"]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"monjainccycrrvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.Compute/virtualMachines/monjainccycrrvm1","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":"2021-07-12T07:56:12.0506615Z","protectedItemDataId":"1680610845","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;monjainccycrrrg;monjainccycrrvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.Compute/virtualMachines/monjainccycrrvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/monjainccycrrrg/providers/Microsoft.RecoveryServices/vaults/MonjainCcyCrrVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-27T18:08:41.8479408Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '971' + - '2399' content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:48 GMT + - Tue, 13 Jul 2021 09:08: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: @@ -15357,7 +37583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '112' x-powered-by: - ASP.NET status: @@ -15371,18 +37597,18 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/muaRG/providers/Microsoft.RecoveryServices/vaults/muaVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15394,7 +37620,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:48 GMT + - Tue, 13 Jul 2021 09:08:23 GMT expires: - '-1' pragma: @@ -15410,7 +37636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '125' x-powered-by: - ASP.NET status: @@ -15430,62 +37656,42 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/MUAtestRG/providers/Microsoft.RecoveryServices/vaults/MUAtesting123/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 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\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2021-06-17T17%3A23%3A15.8657762Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLI\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"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\":\"eastasia\",\"name\":\"akneema-vault-ea\",\"etag\":\"W/\\\"datetime'2021-06-18T05%3A26%3A19.3012951Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"CLI\",\"Owner\":\"akneema\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ea\",\"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\":\"westindia\",\"name\":\"geettest1\",\"etag\":\"W/\\\"datetime'2021-03-04T10%3A22%3A56.9671205Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Auto - Shutdown\":\"No\",\"DeleteBy\":\"01-2022\",\"Owner\":\"gesahoo\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testVMgeesahoo_group/providers/Microsoft.RecoveryServices/vaults/geettest1\",\"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'2021-03-23T06%3A00%3A10.4507864Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/akkanaselrs/providers/microsoft.managedidentity/userassignedidentities/cmktestidentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"objectId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"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\":\"hiagaSrcRG1\",\"etag\":\"W/\\\"datetime'2021-05-13T11%3A52%3A38.3808391Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"Delete By\":\"05-2020\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1\",\"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\":\"hiagaSrcVault2\",\"etag\":\"W/\\\"datetime'2021-05-31T10%3A44%3A49.9950779Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"03-2022\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"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'2021-04-28T16%3A39%3A07.8341181Z'\\\"\",\"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-cli-test-vault\",\"etag\":\"W/\\\"datetime'2021-06-21T09%3A00%3A09.8379618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-cli-test-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"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\":\"akneema-vault-crr\",\"etag\":\"W/\\\"datetime'2021-06-17T18%3A42%3A55.4788796Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLI\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-crr\",\"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\":\"vault42\",\"etag\":\"W/\\\"datetime'2021-03-09T10%3A58%3A49.2838109Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault42\",\"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-vaultq3ma7bfiygl\",\"etag\":\"W/\\\"datetime'2021-06-14T07%3A33%3A30.0008612Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2021-06-21T14%3A01%3A45.7946673Z'\\\"\",\"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-vaultapntlpa5sak\",\"etag\":\"W/\\\"datetime'2021-06-14T07%3A33%3A39.4258298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak\",\"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\":\"gesahoo1\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A41%3A43.2269964Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoo12\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A38%3A22.7858659Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo12\",\"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\":\"gesahoosql\",\"etag\":\"W/\\\"datetime'2021-03-06T15%3A12%3A51.1997421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoosql\",\"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\":\"gesahoovault1\",\"etag\":\"W/\\\"datetime'2021-05-20T06%3A52%3A28.3837417Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\",\"DeleteBy\":\"01-2022\",\"AutoShutdown\":\"No\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault1\",\"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\":\"PSTestRSV4a930a0c\",\"etag\":\"W/\\\"datetime'2021-05-18T15%3A23%3A10.4642162Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"PSTestRSV7e8b8161\",\"etag\":\"W/\\\"datetime'2021-06-08T06%3A39%3A42.72721Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"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'2021-05-25T16%3A58%3A51.4828365Z'\\\"\",\"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\"}}]}" + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '43929' + - '12' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 14:12:50 GMT + - Tue, 13 Jul 2021 09:08: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-original-request-ids: - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 - - 644d44e6-ad85-405a-a604-d2f1124e6868 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -15503,12 +37709,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newonerg/providers/Microsoft.RecoveryServices/vaults/vault204/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15520,7 +37726,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:52 GMT + - Tue, 13 Jul 2021 09:08:23 GMT expires: - '-1' pragma: @@ -15536,7 +37742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -15556,25 +37762,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/crrbmsrunnercanaryccy/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"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":"Completed","lastBackupTime":"2021-06-21T03:06:48.6251308Z","protectedItemDataId":"263883848880839","extendedProperties":{"linuxVmApplicationName":""},"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-06-21T03:07:09.2939657Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1815' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:53 GMT + - Tue, 13 Jul 2021 09:08:24 GMT expires: - '-1' pragma: @@ -15590,7 +37795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '118' x-powered-by: - ASP.NET status: @@ -15610,12 +37815,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NewTest/providers/Microsoft.RecoveryServices/vaults/CRRTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15627,7 +37832,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:56 GMT + - Tue, 13 Jul 2021 09:08:25 GMT expires: - '-1' pragma: @@ -15643,7 +37848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '137' x-powered-by: - ASP.NET status: @@ -15663,12 +37868,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGPeTest/providers/Microsoft.RecoveryServices/vaults/VMPeTest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15680,7 +37885,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:57 GMT + - Tue, 13 Jul 2021 09:08:25 GMT expires: - '-1' pragma: @@ -15696,7 +37901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '136' x-powered-by: - ASP.NET status: @@ -15716,12 +37921,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/prodVault1307A/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15733,7 +37938,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:12:58 GMT + - Tue, 13 Jul 2021 09:08:26 GMT expires: - '-1' pragma: @@ -15749,7 +37954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '117' x-powered-by: - ASP.NET status: @@ -15769,12 +37974,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rogkDemoVaultRG/providers/Microsoft.RecoveryServices/vaults/testVault1307A/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15786,7 +37991,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:00 GMT + - Tue, 13 Jul 2021 09:08:26 GMT expires: - '-1' pragma: @@ -15802,7 +38007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '120' x-powered-by: - ASP.NET status: @@ -15822,12 +38027,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/vault821/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15839,7 +38044,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:02 GMT + - Tue, 13 Jul 2021 09:08:27 GMT expires: - '-1' pragma: @@ -15855,7 +38060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '118' x-powered-by: - ASP.NET status: @@ -15875,12 +38080,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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-snapshot-rg/providers/Microsoft.RecoveryServices/vaults/vault909/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -15892,7 +38097,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:03 GMT + - Tue, 13 Jul 2021 09:08:28 GMT expires: - '-1' pragma: @@ -15908,7 +38113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '120' x-powered-by: - ASP.NET status: @@ -15928,25 +38133,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surrai-cmk-test-ccy/providers/Microsoft.RecoveryServices/vaults/surraiccycmkvault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiaga-rg;hiaga-vm/protectedItems/VM;iaasvmcontainerv2;hiaga-rg;hiaga-vm","name":"VM;iaasvmcontainerv2;hiaga-rg;hiaga-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"hiaga-VM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Compute/virtualMachines/hiaga-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":"2021-06-20T22:02:27.2703247Z","protectedItemDataId":"123146101070871","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiaga-rg;hiaga-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Compute/virtualMachines/hiaga-VM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T22:02:36.7773472Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1821' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:04 GMT + - Tue, 13 Jul 2021 09:08:28 GMT expires: - '-1' pragma: @@ -15962,7 +38166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '135' x-powered-by: - ASP.NET status: @@ -15982,24 +38186,30 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupProtectedItems?api-version=2021-01-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/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm/protectedItems/VM;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","name":"VM;iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400003,"title":"RestoreOperationFailed","message":"Restore + failed with an internal error.","recommendations":["Please retry the operation + in a few minutes. If the problem persists, please contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400199,"title":"VMCreationTimeOutStorageErrorV2","message":"Create + VM took very long time and got timed out","recommendations":["Please retry + the operation after some time. If problem persists, please contact Microsoft + support."]}]}},"friendlyName":"surraicrrcyyvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.Compute/virtualMachines/surraicrrcyyvm","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-07-12T19:38:22.656102Z","protectedItemDataId":"17593165773223","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraicrrtest;surraicrrcyyvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.Compute/virtualMachines/surraicrrcyyvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraicrrtest/providers/Microsoft.RecoveryServices/vaults/surraiccytestvault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-30T19:37:26.1293818Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2411' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:06 GMT + - Tue, 13 Jul 2021 09:08:29 GMT expires: - '-1' pragma: @@ -16015,7 +38225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '126' x-powered-by: - ASP.NET status: @@ -16035,12 +38245,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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/TestLRSVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16052,7 +38262,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:08 GMT + - Tue, 13 Jul 2021 09:08:29 GMT expires: - '-1' pragma: @@ -16068,7 +38278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '118' x-powered-by: - ASP.NET status: @@ -16088,24 +38298,29 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ea/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupProtectedItems?api-version=2021-01-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/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1/protectedItems/VM;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","name":"VM;iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"kosinghav1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/kosinghav1","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-28T00:36:17.0009184Z","protectedItemDataId":"717172572","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;kosinghaIAASVMTesting;kosinghav1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaIAASVMTesting/providers/Microsoft.Compute/virtualMachines/kosinghav1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-28T00:36:19.3643683Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows/protectedItems/VM;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","name":"VM;iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"vikotturA2Windows","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabpostgrestesting/providers/Microsoft.Compute/virtualMachines/vikotturA2Windows","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-07-13T00:34:15.4136379Z","protectedItemDataId":"1375314921","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;mabpostgrestesting;vikotturA2Windows","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabpostgrestesting/providers/Microsoft.Compute/virtualMachines/vikotturA2Windows","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:34:18.3448414Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm/protectedItems/VM;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","name":"VM;iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surrairecoveryvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.Compute/virtualMachines/surrairecoveryvm","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-07-13T00:38:34.4758081Z","protectedItemDataId":"1503150265","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;MadhuDeVaultRG;surrairecoveryvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeVaultRG/providers/Microsoft.Compute/virtualMachines/surrairecoveryvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:38:37.3151895Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmkvm3012","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3012","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-07-13T00:32:23.597313Z","protectedItemDataId":"934321120","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmkvm3012","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3012","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:32:26.7347206Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ZRSBugBash;asdasdasd/protectedItems/VM;iaasvmcontainerv2;ZRSBugBash;asdasdasd","name":"VM;iaasvmcontainerv2;ZRSBugBash;asdasdasd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"asdasdasd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/asdasdasd","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-07-13T00:33:45.6132644Z","protectedItemDataId":"297071189","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ZRSBugBash;asdasdasd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/asdasdasd","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.RecoveryServices/vaults/TestCmkWLSkip1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:33:49.3604403Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '9319' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:08 GMT + - Tue, 13 Jul 2021 09:08:31 GMT expires: - '-1' pragma: @@ -16121,7 +38336,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '121' x-powered-by: - ASP.NET status: @@ -16141,24 +38356,26 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupProtectedItems?api-version=2021-01-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/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ecyzonedowndrill;azdrill1/protectedItems/VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill1","name":"VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"azdrill1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill1","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-07-13T00:39:39.3477069Z","protectedItemDataId":"17594289799946","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ecyzonedowndrill;azdrill1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:39:42.0499899Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/abc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallarg;crrvm/protectedItems/VM;iaasvmcontainerv2;gaallarg;crrvm","name":"VM;iaasvmcontainerv2;gaallarg;crrvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"crrvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrvm","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-22T00:37:40.199217Z","protectedItemDataId":"17592342705240","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallarg;crrvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrvm","policyId":"","policyName":"","lastRecoveryPoint":"2020-12-22T00:37:44.0545564Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3399' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:08 GMT + - Tue, 13 Jul 2021 09:08:31 GMT expires: - '-1' pragma: @@ -16174,7 +38391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '121' x-powered-by: - ASP.NET status: @@ -16194,12 +38411,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcxyz/providers/Microsoft.RecoveryServices/vaults/adigupt-new/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16211,7 +38428,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:08 GMT + - Tue, 13 Jul 2021 09:08:33 GMT expires: - '-1' pragma: @@ -16227,7 +38444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '120' x-powered-by: - ASP.NET status: @@ -16247,12 +38464,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/dhdjd/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16264,7 +38481,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:09 GMT + - Tue, 13 Jul 2021 09:08:33 GMT expires: - '-1' pragma: @@ -16280,7 +38497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '134' x-powered-by: - ASP.NET status: @@ -16300,12 +38517,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testVMgeesahoo_group/providers/Microsoft.RecoveryServices/vaults/geettest1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.RecoveryServices/vaults/newOne/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16317,7 +38534,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:10 GMT + - Tue, 13 Jul 2021 09:08:35 GMT expires: - '-1' pragma: @@ -16333,7 +38550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '119' x-powered-by: - ASP.NET status: @@ -16353,12 +38570,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.RecoveryServices/vaults/abhinkVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16370,7 +38587,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:15 GMT + - Tue, 13 Jul 2021 09:08:37 GMT expires: - '-1' pragma: @@ -16386,7 +38603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '122' x-powered-by: - ASP.NET status: @@ -16406,12 +38623,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar07053/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16423,7 +38640,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:39 GMT + - Tue, 13 Jul 2021 09:08:38 GMT expires: - '-1' pragma: @@ -16439,7 +38656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '124' x-powered-by: - ASP.NET status: @@ -16459,24 +38676,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/asmaskar25051/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoonew1;testgesahoo3/protectedItems/VM;iaasvmcontainerv2;gesahoonew1;testgesahoo3","name":"VM;iaasvmcontainerv2;gesahoonew1;testgesahoo3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgesahoo3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoonew1/providers/Microsoft.Compute/virtualMachines/testgesahoo3","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"193514824632610","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoonew1;testgesahoo3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoonew1/providers/Microsoft.Compute/virtualMachines/testgesahoo3","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1259' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:40 GMT + - Tue, 13 Jul 2021 09:08:39 GMT expires: - '-1' pragma: @@ -16492,7 +38709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '114' x-powered-by: - ASP.NET status: @@ -16512,24 +38729,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupProtectedItems?api-version=2021-01-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/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinitrg;mabagenttestvm/protectedItems/VM;iaasvmcontainerv2;abhinitrg;mabagenttestvm","name":"VM;iaasvmcontainerv2;abhinitrg;mabagenttestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"MABAgentTestVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Compute/virtualMachines/MABAgentTestVM","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-07-12T20:40:04.3908883Z","protectedItemDataId":"52777648213067","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinitrg;mabagenttestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Compute/virtualMachines/MABAgentTestVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnRG1/providers/Microsoft.RecoveryServices/vaults/BackupPreviewECYNewVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T20:40:09.2808122Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1883' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:42 GMT + - Tue, 13 Jul 2021 09:08:41 GMT expires: - '-1' pragma: @@ -16545,7 +38763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '119' x-powered-by: - ASP.NET status: @@ -16565,12 +38783,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.RecoveryServices/vaults/bcrgVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -16582,7 +38800,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:44 GMT + - Tue, 13 Jul 2021 09:08:41 GMT expires: - '-1' pragma: @@ -16598,7 +38816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '118' x-powered-by: - ASP.NET status: @@ -16618,24 +38836,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupProtectedItems?api-version=2021-01-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/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ecyzonedowndrill;azdrill3/protectedItems/VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill3","name":"VM;iaasvmcontainerv2;ecyzonedowndrill;azdrill3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"azdrill3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill3","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-07-12T19:38:26.6495087Z","protectedItemDataId":"35185671837196","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true},"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ecyzonedowndrill;azdrill3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/azdrill3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-bckp/backupPolicies/DailyPolicy2","policyName":"DailyPolicy2","lastRecoveryPoint":"2021-07-12T19:38:31.3489943Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1935' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:45 GMT + - Tue, 13 Jul 2021 09:08:43 GMT expires: - '-1' pragma: @@ -16651,7 +38870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '112' x-powered-by: - ASP.NET status: @@ -16671,25 +38890,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/adkayeth-afs-test/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-vm-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-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-06-21T03:32:33.1263263Z","protectedItemDataId":"119104222","extendedProperties":{"linuxVmApplicationName":""},"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-06-21T03:32:36.6431203Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1844' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:46 GMT + - Tue, 13 Jul 2021 09:08:45 GMT expires: - '-1' pragma: @@ -16705,7 +38923,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '128' x-powered-by: - ASP.NET status: @@ -16725,24 +38943,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault945/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcRG1/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":{},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","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/hiagaSrcRG1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1435' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:45 GMT + - Tue, 13 Jul 2021 09:08:46 GMT expires: - '-1' pragma: @@ -16758,7 +38976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '129' x-powered-by: - ASP.NET status: @@ -16778,28 +38996,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"ProtectionError","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","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;crrtest;crrtargetvm/protectedItems/VM;iaasvmcontainerv2;crrtest;crrtargetvm","name":"VM;iaasvmcontainerv2;crrtest;crrtargetvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"CrrTargetVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrrTest/providers/Microsoft.Compute/virtualMachines/CrrTargetVM","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-21T23:40:28.9573261Z","protectedItemDataId":"1245944172","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;crrtest;crrtargetvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CrrTest/providers/Microsoft.Compute/virtualMachines/CrrTargetVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/crrBillingTest/providers/Microsoft.RecoveryServices/vaults/kosinghaBillTest2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-21T23:41:00.3045889Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1989' + - '1811' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:47 GMT + - Tue, 13 Jul 2021 09:08:48 GMT expires: - '-1' pragma: @@ -16815,7 +39030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '114' x-powered-by: - ASP.NET status: @@ -16835,24 +39050,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ECYDrill/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault2/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":{},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","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/hiagaSrcVault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1441' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:47 GMT + - Tue, 13 Jul 2021 09:08:48 GMT expires: - '-1' pragma: @@ -16868,7 +39083,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '113' x-powered-by: - ASP.NET status: @@ -16888,28 +39103,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault269/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2048' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:48 GMT + - Tue, 13 Jul 2021 09:08:48 GMT expires: - '-1' pragma: @@ -16925,7 +39136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '133' x-powered-by: - ASP.NET status: @@ -16945,25 +39156,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/vault445/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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-06-20T21:34:33.8121497Z","protectedItemDataId":"70370838940336","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T21:34:37.6664163Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1893' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:49 GMT + - Tue, 13 Jul 2021 09:08:50 GMT expires: - '-1' pragma: @@ -16979,7 +39189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '117' x-powered-by: - ASP.NET status: @@ -16999,25 +39209,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/WorkloadAzDrillZRS/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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-06-20T21:02:04.6500629Z","protectedItemDataId":"140739447045620","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T21:02:23.9943354Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1894' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:50 GMT + - Tue, 13 Jul 2021 09:08:50 GMT expires: - '-1' pragma: @@ -17033,7 +39242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '116' x-powered-by: - ASP.NET status: @@ -17053,24 +39262,31 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupProtectedItems?api-version=2021-01-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/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":380020,"title":"ExtensionVCRedistInstallationFailure","message":"Snapshot + operation failed due to failure in installation of Visual C++ Redistributable + for Visual Studio 2013.","recommendations":["Please install Visual C++ Redistributable + for Visual Studio 2013. If you are observing issues with installation or if + it is already installed and you are observing this error, please restart the + VM to clean installation issues."]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T07:26:58.9363345Z","protectedItemDataId":"123146583354166","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T07:57:10.040157Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn2","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-07-13T07:29:21.2079752Z","protectedItemDataId":"123146248280396","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:04:59.8716357Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3/protectedItems/VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","name":"VM;iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"arpja-drl-zn3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn3","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-07-13T07:29:31.0939837Z","protectedItemDataId":"123147171439709","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ECYZoneDownDrill;arpja-drl-zn3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Compute/virtualMachines/arpja-drl-zn3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.RecoveryServices/vaults/ZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T07:29:35.4847462Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '5947' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:50 GMT + - Tue, 13 Jul 2021 09:08:51 GMT expires: - '-1' pragma: @@ -17086,7 +39302,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '119' x-powered-by: - ASP.NET status: @@ -17106,24 +39322,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest/backupProtectedItems?api-version=2021-01-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/gesahooblob/providers/Microsoft.RecoveryServices/vaults/gesahootest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahooblob;testgeesahoovm/protectedItems/VM;iaasvmcontainerv2;gesahooblob;testgeesahoovm","name":"VM;iaasvmcontainerv2;gesahooblob;testgeesahoovm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgeesahoovm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.Compute/virtualMachines/testgeesahoovm","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35184471494762","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahooblob;testgeesahoovm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahooblob/providers/Microsoft.Compute/virtualMachines/testgeesahoovm","policyId":"","policyName":"","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1299' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:52 GMT + - Tue, 13 Jul 2021 09:08:51 GMT expires: - '-1' pragma: @@ -17139,7 +39355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '118' x-powered-by: - ASP.NET status: @@ -17159,28 +39375,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harjairg/providers/Microsoft.RecoveryServices/vaults/harjairunnervault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"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":"akkanaseLRSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-28T17:06:57.5973259Z","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":"","policyName":"","lastRecoveryPoint":"2021-01-27T17:08:20.4949135Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1906' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:54 GMT + - Tue, 13 Jul 2021 09:08:52 GMT expires: - '-1' pragma: @@ -17196,7 +39408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '120' x-powered-by: - ASP.NET status: @@ -17216,25 +39428,29 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-hana-vm-new","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T15:36:15.3609965Z","protectedItemDataId":"52777015471742","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T15:36:20.7252609Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;aarifdomain;kosinghavm1/protectedItems/VM;iaasvmcontainerv2;aarifdomain;kosinghavm1","name":"VM;iaasvmcontainerv2;aarifdomain;kosinghavm1","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":"kosinghavm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.Compute/virtualMachines/kosinghavm1","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-07-12T22:08:30.6768933Z","protectedItemDataId":"87962882385959","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;aarifdomain;kosinghavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aarifdomain/providers/Microsoft.Compute/virtualMachines/kosinghavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-11T22:03:24.2724508Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gaallarg;crrnewvm/protectedItems/VM;iaasvmcontainerv2;gaallarg;crrnewvm","name":"VM;iaasvmcontainerv2;gaallarg;crrnewvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"crrnewvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrnewvm","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-21T22:05:43.1920926Z","protectedItemDataId":"87962573325455","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gaallarg;crrnewvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gaallarg/providers/Microsoft.Compute/virtualMachines/crrnewvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.RecoveryServices/vaults/KosinghaECYbillTestingVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-21T22:05:46.176328Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1884' + - '3919' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:56 GMT + - Tue, 13 Jul 2021 09:08:52 GMT expires: - '-1' pragma: @@ -17250,7 +39466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '113' x-powered-by: - ASP.NET status: @@ -17270,24 +39486,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupProtectedItems?api-version=2021-01-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/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd/protectedItems/VM;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","name":"VM;iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ld-kosingha-ecy-8tb-stssd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ecy-8tb-stssd","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-07-13T05:07:06.0165965Z","protectedItemDataId":"35186289976282","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;largediskiaasvmtest;ld-kosingha-ecy-8tb-stssd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.Compute/virtualMachines/ld-kosingha-ecy-8tb-stssd","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/largeDiskIaasVMTest/providers/Microsoft.RecoveryServices/vaults/ld-kosingha-ecy-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:07:10.3927266Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2030' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:58 GMT + - Tue, 13 Jul 2021 09:08:55 GMT expires: - '-1' pragma: @@ -17303,7 +39520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '126' x-powered-by: - ASP.NET status: @@ -17323,27 +39540,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeECY/providers/Microsoft.RecoveryServices/vaults/ECYResourceMove/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3/protectedItems/VM;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","name":"VM;iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400309,"title":"UserErrorGenericResourceNotFound","message":"Azure - resource does not exist.","recommendations":["Please make sure required resources - exist. If the issue persists, contact Microsoft support."]}]}},"friendlyName":"asebvtseavm3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","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-06-13T15:39:53.5244286Z","protectedItemDataId":"244770560","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ASEBVTRG;asebvtseavm3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T15:33:18.6895822Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2014' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:58 GMT + - Tue, 13 Jul 2021 09:08:55 GMT expires: - '-1' pragma: @@ -17359,7 +39573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '127' x-powered-by: - ASP.NET status: @@ -17379,12 +39593,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/madhuderg/providers/Microsoft.RecoveryServices/vaults/CRRTestTargetVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17396,7 +39610,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:59 GMT + - Tue, 13 Jul 2021 09:08:55 GMT expires: - '-1' pragma: @@ -17412,7 +39626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '118' x-powered-by: - ASP.NET status: @@ -17432,12 +39646,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.RecoveryServices/vaults/MadhuDeTestVM/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17449,7 +39663,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:59 GMT + - Tue, 13 Jul 2021 09:08:56 GMT expires: - '-1' pragma: @@ -17465,7 +39679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '128' x-powered-by: - ASP.NET status: @@ -17485,36 +39699,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-apitest-s1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","name":"VM;iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","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":"sdkosdisk3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdkosdisk3","protectionStatus":"Unhealthy","protectionState":"IRPending","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":"2021-03-31T14:55:17.8794396Z","protectedItemDataId":"2079402183","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;sdkosdisk3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdkosdisk3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;sdktest2/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;sdktest2","name":"VM;iaasvmcontainerv2;akkanasesdktesting;sdktest2","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":"sdktest2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdktest2","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","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":"2021-03-31T14:55:40.7956559Z","protectedItemDataId":"1650168206","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;sdktest2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/sdktest2","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '4149' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:13:59 GMT + - Tue, 13 Jul 2021 09:08:58 GMT expires: - '-1' pragma: @@ -17530,7 +39732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '118' x-powered-by: - ASP.NET status: @@ -17550,12 +39752,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-cli-test-vault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-s1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17567,7 +39769,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:00 GMT + - Tue, 13 Jul 2021 09:08:58 GMT expires: - '-1' pragma: @@ -17583,7 +39785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '112' x-powered-by: - ASP.NET status: @@ -17603,12 +39805,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-s10/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17620,7 +39822,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:00 GMT + - Tue, 13 Jul 2021 09:08:59 GMT expires: - '-1' pragma: @@ -17636,7 +39838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '111' x-powered-by: - ASP.NET status: @@ -17656,12 +39858,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault-crr/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17673,7 +39875,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:00 GMT + - Tue, 13 Jul 2021 09:09:00 GMT expires: - '-1' pragma: @@ -17689,7 +39891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '125' x-powered-by: - ASP.NET status: @@ -17709,12 +39911,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17726,7 +39928,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:01 GMT + - Tue, 13 Jul 2021 09:09:02 GMT expires: - '-1' pragma: @@ -17742,7 +39944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '113' x-powered-by: - ASP.NET status: @@ -17762,12 +39964,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-test-vault3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17779,7 +39981,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:01 GMT + - Tue, 13 Jul 2021 09:09:02 GMT expires: - '-1' pragma: @@ -17795,7 +39997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '118' x-powered-by: - ASP.NET status: @@ -17815,12 +40017,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/dsmove-bvt-vault5/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17832,7 +40034,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:01 GMT + - Tue, 13 Jul 2021 09:09:03 GMT expires: - '-1' pragma: @@ -17848,7 +40050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '125' x-powered-by: - ASP.NET status: @@ -17868,12 +40070,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/AutoUpdateTestMARS/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -17885,7 +40087,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:02 GMT + - Tue, 13 Jul 2021 09:09:03 GMT expires: - '-1' pragma: @@ -17901,7 +40103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '121' x-powered-by: - ASP.NET status: @@ -17921,24 +40123,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupProtectedItems?api-version=2021-01-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/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmktestvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmktestvm1","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-07-12T22:10:11.6224104Z","protectedItemDataId":"52778566018387","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmktestvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmktestvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraicmkecyvault1/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T22:10:14.2081888Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1897' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:02 GMT + - Tue, 13 Jul 2021 09:09:04 GMT expires: - '-1' pragma: @@ -17954,7 +40157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '117' x-powered-by: - ASP.NET status: @@ -17974,24 +40177,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupProtectedItems?api-version=2021-01-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/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011/protectedItems/VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","name":"VM;iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraicmkvm3011","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3011","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-07-13T00:39:58.6324191Z","protectedItemDataId":"724401492","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg;surraicmkvm3011","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Compute/virtualMachines/surraicmkvm3011","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.RecoveryServices/vaults/surraiecycmkvault3011/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T00:40:02.0345112Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1891' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:03 GMT + - Tue, 13 Jul 2021 09:09:05 GMT expires: - '-1' pragma: @@ -18007,7 +40211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '112' x-powered-by: - ASP.NET status: @@ -18027,24 +40231,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupProtectedItems?api-version=2021-01-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/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1/protectedItems/VM;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","name":"VM;iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraitestecyvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraitestecyvm1","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-07-13T01:32:07.227026Z","protectedItemDataId":"17593342647707","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg1;surraitestecyvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraitestecyvm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecypevault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:32:10.7430408Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1900' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:04 GMT + - Tue, 13 Jul 2021 09:09:05 GMT expires: - '-1' pragma: @@ -18060,7 +40265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '111' x-powered-by: - ASP.NET status: @@ -18080,24 +40285,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupProtectedItems?api-version=2021-01-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/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2/protectedItems/VM;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","name":"VM;iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"surraiecytestvm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraiecytestvm2","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-07-12T23:10:01.4371359Z","protectedItemDataId":"70370664469282","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;surraiecyrg1;surraiecytestvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.Compute/virtualMachines/surraiecytestvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg1/providers/Microsoft.RecoveryServices/vaults/surraiecytestvault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T23:10:04.8110241Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1907' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:04 GMT + - Tue, 13 Jul 2021 09:09:06 GMT expires: - '-1' pragma: @@ -18113,7 +40319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '117' x-powered-by: - ASP.NET status: @@ -18133,12 +40339,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault42/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrgnew/providers/Microsoft.RecoveryServices/vaults/vault940/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18150,7 +40356,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:03 GMT + - Tue, 13 Jul 2021 09:09:06 GMT expires: - '-1' pragma: @@ -18166,7 +40372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '117' x-powered-by: - ASP.NET status: @@ -18186,12 +40392,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindtestvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18203,7 +40409,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:05 GMT + - Tue, 13 Jul 2021 09:09:08 GMT expires: - '-1' pragma: @@ -18219,7 +40425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '117' x-powered-by: - ASP.NET status: @@ -18239,12 +40445,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/arvindzrstest2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18256,7 +40462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:04 GMT + - Tue, 13 Jul 2021 09:09:09 GMT expires: - '-1' pragma: @@ -18272,7 +40478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '117' x-powered-by: - ASP.NET status: @@ -18292,24 +40498,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupProtectedItems?api-version=2021-01-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/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","name":"VM;iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","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":"sureshtvmzrs","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/sureshtvmzrs","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-07-12T09:37:14.7227392Z","protectedItemDataId":"35185043494290","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;sureshtvmzrs","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/sureshtvmzrs","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/suresht-zrstest/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:37:17.2127915Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2007' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:05 GMT + - Tue, 13 Jul 2021 09:09:09 GMT expires: - '-1' pragma: @@ -18325,7 +40532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '126' x-powered-by: - ASP.NET status: @@ -18345,25 +40552,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp/protectedItems/VM;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","name":"VM;iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm4vvrp","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.Compute/virtualMachines/clitest-vm4vvrp","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T07:35:58.8301725Z","protectedItemDataId":"70369788043934","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5;clitest-vm4vvrp","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.Compute/virtualMachines/clitest-vm4vvrp","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrwnxhyb5aeapq363p32ie72nzsei4iwgjv5z26unrildsb2aihbycjgc6f4rd7f5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq3ma7bfiygl/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T07:36:02.191389Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;viharipzrstesting/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;viharipzrstesting","name":"VM;iaasvmcontainerv2;zrsbugbash;viharipzrstesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"VihariPZRSTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/VihariPZRSTesting","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-07-12T09:31:35.9683441Z","protectedItemDataId":"202658094","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;viharipzrstesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/VihariPZRSTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/VihariPZRSBugBash/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:32:33.8515535Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2362' + - '1889' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:06 GMT + - Tue, 13 Jul 2021 09:09:10 GMT expires: - '-1' pragma: @@ -18379,7 +40586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '110' x-powered-by: - ASP.NET status: @@ -18399,24 +40606,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupProtectedItems?api-version=2021-01-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/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;abhinkrg;zrstesting/protectedItems/VM;iaasvmcontainerv2;abhinkrg;zrstesting","name":"VM;iaasvmcontainerv2;abhinkrg;zrstesting","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ZRSTesting","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/ZRSTesting","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-07-12T15:36:21.1559422Z","protectedItemDataId":"17593788754455","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;abhinkrg;zrstesting","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Compute/virtualMachines/ZRSTesting","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZRSTesingCV/backupPolicies/ZRSPPP","policyName":"ZRSPPP","lastRecoveryPoint":"2021-07-12T15:36:25.51482Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1805' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:05 GMT + - Tue, 13 Jul 2021 09:09:12 GMT expires: - '-1' pragma: @@ -18432,7 +40640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '121' x-powered-by: - ASP.NET status: @@ -18452,25 +40660,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb/protectedItems/VM;iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb","name":"VM;iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmjxorb","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.Compute/virtualMachines/clitest-vmjxorb","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T07:37:50.4046169Z","protectedItemDataId":"1152094","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho;clitest-vmjxorb","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.Compute/virtualMachines/clitest-vmjxorb","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzoh3umyqofvfwd3vwihb7tjqogf2sxwxjojl6yut6qhw2i4lty6s3mkabhixasfho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultapntlpa5sak/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T07:37:53.3163527Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;zrsbugbash;ztestvm/protectedItems/VM;iaasvmcontainerv2;zrsbugbash;ztestvm","name":"VM;iaasvmcontainerv2;zrsbugbash;ztestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"ZTestVm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/ZTestVm","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-07-12T09:36:22.688144Z","protectedItemDataId":"52777554480039","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;zrsbugbash;ztestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Compute/virtualMachines/ZTestVm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.RecoveryServices/vaults/ZZrsVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T09:36:25.4780487Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2356' + - '1807' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:06 GMT + - Tue, 13 Jul 2021 09:09:12 GMT expires: - '-1' pragma: @@ -18486,7 +40694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '120' x-powered-by: - ASP.NET status: @@ -18506,12 +40714,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.RecoveryServices/vaults/mayaggarrmvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18523,7 +40731,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:06 GMT + - Tue, 13 Jul 2021 09:09:13 GMT expires: - '-1' pragma: @@ -18539,7 +40747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '112' x-powered-by: - ASP.NET status: @@ -18559,24 +40767,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2021-01-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/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema-rg;akneema-vm/protectedItems/VM;iaasvmcontainerv2;akneema-rg;akneema-vm","name":"VM;iaasvmcontainerv2;akneema-rg;akneema-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Compute/virtualMachines/akneema-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":"2021-07-13T05:05:22.2634589Z","protectedItemDataId":"70368884915590","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akneema-rg;akneema-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Compute/virtualMachines/akneema-vm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T05:05:25.351469Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1809' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:07 GMT + - Tue, 13 Jul 2021 09:09:13 GMT expires: - '-1' pragma: @@ -18592,7 +40801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '119' x-powered-by: - ASP.NET status: @@ -18612,12 +40821,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.RecoveryServices/vaults/akneema-vault2/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18629,7 +40838,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:08 GMT + - Tue, 13 Jul 2021 09:09:14 GMT expires: - '-1' pragma: @@ -18645,7 +40854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '112' x-powered-by: - ASP.NET status: @@ -18665,12 +40874,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo12/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmitttest/providers/Microsoft.RecoveryServices/vaults/asmitttestvault/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18682,7 +40891,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:08 GMT + - Tue, 13 Jul 2021 09:09:14 GMT expires: - '-1' pragma: @@ -18698,7 +40907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '111' x-powered-by: - ASP.NET status: @@ -18718,12 +40927,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rg2axfrllddcexsd7lf5jt2kizmwln26tved5xpd3yjdmvw37lssrbffyzev42zfgop/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ilaqmfbtio/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18735,7 +40944,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:08 GMT + - Tue, 13 Jul 2021 09:09:16 GMT expires: - '-1' pragma: @@ -18751,7 +40960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '117' x-powered-by: - ASP.NET status: @@ -18771,24 +40980,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoosql/backupProtectedItems?api-version=2021-01-01&$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.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupProtectedItems?api-version=2021-01-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/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3/protectedItems/VM;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","name":"VM;iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm5eob3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","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-07-13T08:05:52.5577592Z","protectedItemDataId":"70369028051695","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t;clitest-vm5eob3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Compute/virtualMachines/clitest-vm5eob3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultciyzoepyvcc/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:05:56.0570434Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2456' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:09 GMT + - Tue, 13 Jul 2021 09:09:16 GMT expires: - '-1' pragma: @@ -18804,7 +41014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '118' x-powered-by: - ASP.NET status: @@ -18824,12 +41034,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rg3d7kl2qk63/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk5pb5p7jqch/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -18841,7 +41051,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:10 GMT + - Tue, 13 Jul 2021 09:09:16 GMT expires: - '-1' pragma: @@ -18857,7 +41067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '120' x-powered-by: - ASP.NET status: @@ -18877,24 +41087,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault1/backupProtectedItems?api-version=2021-01-01&$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.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupProtectedItems?api-version=2021-01-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/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r/protectedItems/VM;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","name":"VM;iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmh7a4r","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.Compute/virtualMachines/clitest-vmh7a4r","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-07-12T16:37:15.066406Z","protectedItemDataId":"70370221429489","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz;clitest-vmh7a4r","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.Compute/virtualMachines/clitest-vmh7a4r","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawcssuo64wofokdoi5e2pvkggjkknhxazlmbujoi5dv75wj5bdlynauhv2rz3vviz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultr3yegpfmnyy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:37:17.7829359Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2362' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:09 GMT + - Tue, 13 Jul 2021 09:09:18 GMT expires: - '-1' pragma: @@ -18910,7 +41121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '107' x-powered-by: - ASP.NET status: @@ -18930,24 +41141,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupProtectedItems?api-version=2021-01-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/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia/protectedItems/VM;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","name":"VM;iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmcojia","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.Compute/virtualMachines/clitest-vmcojia","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T06:24:01.2996298Z","protectedItemDataId":"2617328","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri;clitest-vmcojia","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.Compute/virtualMachines/clitest-vmcojia","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbfstdcb4xk67tqen4jfz2ac4gqgpuy655honvwtlzmao7b2u55lpet4mt7uuwoyri/providers/Microsoft.RecoveryServices/vaults/clitest-vault66svycrqakh/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T06:24:05.2187101Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2356' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:10 GMT + - Tue, 13 Jul 2021 09:09:18 GMT expires: - '-1' pragma: @@ -18963,7 +41175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '120' x-powered-by: - ASP.NET status: @@ -18983,12 +41195,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgdpjnygfyazfuwkslmu5qsjniz7pe7hpn7gw5c2sdejk37okvpcjt25mlmigjr4ruz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultviltn3z3hdn/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19000,7 +41212,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:10 GMT + - Tue, 13 Jul 2021 09:09:18 GMT expires: - '-1' pragma: @@ -19016,7 +41228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '111' x-powered-by: - ASP.NET status: @@ -19036,12 +41248,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19053,7 +41265,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:11 GMT + - Tue, 13 Jul 2021 09:09:18 GMT expires: - '-1' pragma: @@ -19069,7 +41281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '123' x-powered-by: - ASP.NET status: @@ -19089,12 +41301,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rghempizrszj/providers/Microsoft.RecoveryServices/vaults/clitest-vault7vgbsde3rvo/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19106,7 +41318,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:11 GMT + - Tue, 13 Jul 2021 09:09:19 GMT expires: - '-1' pragma: @@ -19122,7 +41334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '132' x-powered-by: - ASP.NET status: @@ -19142,37 +41354,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgmtmrta7e2n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu2sa3i6fren/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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":"TransientDegraded","resourceHealthDetails":[{"code":400309,"title":"UserErrorGenericResourceNotFound","message":"Azure - resource does not exist.","recommendations":["Please make sure required resources - exist. If the issue persists, contact Microsoft support."]}]}},"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":"CompletedWithWarnings","lastBackupTime":"2021-06-19T15:10:53.8938236Z","protectedItemDataId":"35185801335735","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T15:09:39.4701538Z","isArchiveEnabled":false}},{"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":"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":"sdsadsad","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad","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-06-20T16:06:24.4401498Z","protectedItemDataId":"35184869793789","extendedProperties":{},"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":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-07-27T16:03:37.6716963Z","isArchiveEnabled":false}},{"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":"ProtectionStopped","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":"","policyName":"","lastRecoveryPoint":"2020-09-13T22:38:39.3505175Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;v2pstestvm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;v2pstestvm","name":"VM;iaasvmcontainerv2;sarath-rg;v2pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"v2pstestvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/v2pstestvm","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35185285683701","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;v2pstestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/v2pstestvm","policyId":"","policyName":"","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '7216' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:11 GMT + - Tue, 13 Jul 2021 09:09:20 GMT expires: - '-1' pragma: @@ -19188,7 +41387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '117' x-powered-by: - ASP.NET status: @@ -19208,12 +41407,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgo5jjxrimsllok4xd7vkruddg7h2yvde7elfc5l4ee7fz6wm6jievftxow7tsa2lej/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxvz7kzd22fq/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19225,7 +41424,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:12 GMT + - Tue, 13 Jul 2021 09:09:20 GMT expires: - '-1' pragma: @@ -19241,7 +41440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '111' x-powered-by: - ASP.NET status: @@ -19261,24 +41460,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq/backupProtectedItems?api-version=2021-01-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/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i/protectedItems/VM;iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i","name":"VM;iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmvuo7i","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.Compute/virtualMachines/clitest-vmvuo7i","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"832763478","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s;clitest-vmvuo7i","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.Compute/virtualMachines/clitest-vmvuo7i","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5u5qgmop2eyibtkmq7v5qeie22skctdsgi5ljwbisxdhk57uz5ile7ib4yrtwe6s/providers/Microsoft.RecoveryServices/vaults/clitest-vault7oaiaxnd3uq/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1983' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:12 GMT + - Tue, 13 Jul 2021 09:09:21 GMT expires: - '-1' pragma: @@ -19294,7 +41493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '110' x-powered-by: - ASP.NET status: @@ -19314,12 +41513,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgpuiuax7tzaks7rbrwy3cmj4mni6f6oovxhj2cyaoz5vwpfjngzt7jzcemguuezeix/providers/Microsoft.RecoveryServices/vaults/clitest-vault4uqtshko5om/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19331,7 +41530,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:13 GMT + - Tue, 13 Jul 2021 09:09:21 GMT expires: - '-1' pragma: @@ -19347,7 +41546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '116' x-powered-by: - ASP.NET status: @@ -19367,25 +41566,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c/backupProtectedItems?api-version=2021-01-01&$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.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300/protectedItems/VM;iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300","name":"VM;iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM4a9300","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.Compute/virtualMachines/PSTestVM4a9300","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-05-18T15:28:22.469368Z","protectedItemDataId":"70369685895750","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg4a930a0c;pstestvm4a9300","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.Compute/virtualMachines/PSTestVM4a9300","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG4a930a0c/providers/Microsoft.RecoveryServices/vaults/PSTestRSV4a930a0c/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-05-18T15:28:26.0216712Z","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l/protectedItems/VM;iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l","name":"VM;iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmd3k4l","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.Compute/virtualMachines/clitest-vmd3k4l","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-07-13T08:04:35.5907402Z","protectedItemDataId":"17592430864446","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl;clitest-vmd3k4l","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.Compute/virtualMachines/clitest-vmd3k4l","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs6c6wi5y6iuxfv4anrke5zmjtviy7mzv5jccjwyuwf7poyn3pebu4mj2yrrmp43zl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt5rhogebbou/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T08:04:38.9788859Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1869' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:13 GMT + - Tue, 13 Jul 2021 09:09:22 GMT expires: - '-1' pragma: @@ -19401,7 +41600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '117' x-powered-by: - ASP.NET status: @@ -19421,25 +41620,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161/backupProtectedItems?api-version=2021-01-01&$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.rgtb6fpqzldd/providers/Microsoft.RecoveryServices/vaults/clitest-vault3uww3nsnehj/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80/protectedItems/VM;iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80","name":"VM;iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM7e8b80","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.Compute/virtualMachines/PSTestVM7e8b80","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-08T06:40:25.1142538Z","protectedItemDataId":"70369713343417","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg7e8b8161;pstestvm7e8b80","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.Compute/virtualMachines/PSTestVM7e8b80","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7e8b8161/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7e8b8161/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-08T06:40:28.8486198Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1870' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:14 GMT + - Tue, 13 Jul 2021 09:09:22 GMT expires: - '-1' pragma: @@ -19455,7 +41653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '115' x-powered-by: - ASP.NET status: @@ -19475,24 +41673,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 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=2021-01-01&$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.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa/backupProtectedItems?api-version=2021-01-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/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j/protectedItems/VM;iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j","name":"VM;iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmvcy5j","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.Compute/virtualMachines/clitest-vmvcy5j","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-07-12T16:37:29.5308183Z","protectedItemDataId":"187652533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc;clitest-vmvcy5j","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.Compute/virtualMachines/clitest-vmvcy5j","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtv4vzfggowlldw752modgalrrtrz4yzm3udodbo3ag7olcp2agozobgfj4eywujtc/providers/Microsoft.RecoveryServices/vaults/clitest-vaults5zqycuhpfa/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:37:32.2360722Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2358' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:14 GMT + - Tue, 13 Jul 2021 09:09:22 GMT expires: - '-1' pragma: @@ -19508,7 +41707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '119' x-powered-by: - ASP.NET status: @@ -19528,12 +41727,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgw334cvoozs2gpptqdii6smyw4i2kkx3wz6gt2onxu6pddwpdkky5py7nhgu4tl4ud/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwurxwm3wip3/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19545,7 +41744,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:14 GMT + - Tue, 13 Jul 2021 09:09:23 GMT expires: - '-1' pragma: @@ -19561,7 +41760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '124' x-powered-by: - ASP.NET status: @@ -19581,12 +41780,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgykrgkyzkxgcik32u5sbwsjy4ttyfd5gcpqotrtrdskgd3hwukphzxjxgulnl6mkdu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcufv3xkmajq/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19598,7 +41797,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:15 GMT + - Tue, 13 Jul 2021 09:09:24 GMT expires: - '-1' pragma: @@ -19614,7 +41813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '106' x-powered-by: - ASP.NET status: @@ -19634,36 +41833,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgymouom2j5x4w5rdeaywgsdw7pbfwpqpgphgxoa6lht6ofz46r547txy6vkjtuorvm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh4sgz3r4ht/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testvmchgsql13/protectedItems/VM;iaasvmcontainerv2;chandrikarg;testvmchgsql13","name":"VM;iaasvmcontainerv2;chandrikarg;testvmchgsql13","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmchgsql13","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmchgsql13","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T00:40:05.3252653Z","protectedItemDataId":"70370596079636","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;chandrikarg;testvmchgsql13","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmchgsql13","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy-km3j84jb","policyName":"DailyPolicy-km3j84jb","lastRecoveryPoint":"2021-06-21T00:40:18.3760846Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectedItems/VM;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"VM;iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job - is cancelled.","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"nilsha-test","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T13:35:49.9374101Z","protectedItemDataId":"70370549617528","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;nilay-rg;nilsha-test","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T13:35:55.6144022Z","isArchiveEnabled":false}},{"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":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-03-31T19:08:14.904885Z","protectedItemDataId":"70370353422863","extendedProperties":{"linuxVmApplicationName":""},"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":"","policyName":"","lastRecoveryPoint":"2021-03-31T19:08:24.8739039Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sarath-sqltestvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T04:03:21.7941824Z","protectedItemDataId":"70369653559953","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy-kn5t33ex","policyName":"DailyPolicy-kn5t33ex","lastRecoveryPoint":"2021-06-21T04:03:25.5841163Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"VM;iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sarathPSTest001","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T11:33:18.4196644Z","protectedItemDataId":"70369496373243","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarathpstest001","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/dsddssad","policyName":"dsddssad","lastRecoveryPoint":"2021-06-21T11:33:22.9862494Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarathvm","name":"VM;iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sarathvm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T21:34:51.9313286Z","protectedItemDataId":"70370145517849","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;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/adi-afec-2","policyName":"adi-afec-2","lastRecoveryPoint":"2021-06-20T21:34:55.4803504Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectedItems/VM;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"VM;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"dsadsa","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T19:39:36.0461304Z","protectedItemDataId":"70369872887780","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy232","policyName":"DailyPolicy232","lastRecoveryPoint":"2021-06-20T19:39:38.3419103Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectedItems/VM;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"VM;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400380,"title":"DiskAPIRevokeSASFailed","message":"Failed - to reset access of the restored disk(s).","recommendations":["Please try again. - If problem persists, contact Microsoft support."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sddsds","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T14:09:53.0366152Z","protectedItemDataId":"70370137300548","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/mypooolicy","policyName":"mypooolicy","lastRecoveryPoint":"2021-06-21T14:01:37.1582231Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectedItems/VM;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"VM;iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sisi-mercury","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T19:35:14.3975158Z","protectedItemDataId":"70370049656096","extendedProperties":{"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/DailyPolicy232","policyName":"DailyPolicy232","lastRecoveryPoint":"2021-06-20T19:35:17.7891771Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '17007' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:15 GMT + - Tue, 13 Jul 2021 09:09:24 GMT expires: - '-1' pragma: @@ -19679,7 +41866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '119' x-powered-by: - ASP.NET status: @@ -19699,12 +41886,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgz74trrkv7ejfvfrng7ob4kno75fopjy4jzqfn6qj5p5bfjza5bcnomao4yqmpmj7u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4stgkxrddm/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19716,7 +41903,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:15 GMT + - Tue, 13 Jul 2021 09:09:24 GMT expires: - '-1' pragma: @@ -19732,7 +41919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '119' x-powered-by: - ASP.NET status: @@ -19752,24 +41939,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$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.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy/backupProtectedItems?api-version=2021-01-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/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry/protectedItems/VM;iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry","name":"VM;iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vmcuwry","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Compute/virtualMachines/clitest-vmcuwry","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-07-12T16:09:27.0352356Z","protectedItemDataId":"833640874","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitest-vmcuwry","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Compute/virtualMachines/clitest-vmcuwry","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.RecoveryServices/vaults/clitest-vault3mqxpoklqcy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-12T16:09:31.2071437Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2451' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:16 GMT + - Tue, 13 Jul 2021 09:09:26 GMT expires: - '-1' pragma: @@ -19785,7 +41973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '119' x-powered-by: - ASP.NET status: @@ -19805,24 +41993,42 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupProtectedItems?api-version=2021-01-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/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;contosorg2;testencvm001/protectedItems/VM;iaasvmcontainerv2;contosorg2;testencvm001","name":"VM;iaasvmcontainerv2;contosorg2;testencvm001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testencvm001","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Compute/virtualMachines/testencvm001","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-07-13T01:08:39.5320727Z","protectedItemDataId":"35185724481896","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;contosorg2;testencvm001","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Compute/virtualMachines/testencvm001","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:08:46.5571353Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;CONTOSORG;ContosoDemoVM/protectedItems/VM;iaasvmcontainerv2;CONTOSORG;ContosoDemoVM","name":"VM;iaasvmcontainerv2;CONTOSORG;ContosoDemoVM","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":"ContosoDemoVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/ContosoDemoVM","protectionStatus":"Unhealthy","protectionState":"Protected","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":"2021-07-12T09:47:17.5673745Z","protectedItemDataId":"35185799530713","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;CONTOSORG;ContosoDemoVM","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/ContosoDemoVM","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-03-29T07:07:16.1721256Z","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ContosoRG;testvm001/protectedItems/VM;iaasvmcontainerv2;ContosoRG;testvm001","name":"VM;iaasvmcontainerv2;ContosoRG;testvm001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","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":"testvm001","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm001","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":"2021-05-17T05:30:15.168558Z","protectedItemDataId":"35185680367934","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ContosoRG;testvm001","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm001","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;CONTOSORG;testvm1123/protectedItems/VM;iaasvmcontainerv2;CONTOSORG;testvm1123","name":"VM;iaasvmcontainerv2;CONTOSORG;testvm1123","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvm1123","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm1123","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-07-13T01:01:32.2431944Z","protectedItemDataId":"35186408329621","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;CONTOSORG;testvm1123","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/testvm1123","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.RecoveryServices/vaults/vault947/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-07-13T01:01:36.6987435Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '8144' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:16 GMT + - Tue, 13 Jul 2021 09:09:26 GMT expires: - '-1' pragma: @@ -19838,7 +42044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '118' x-powered-by: - ASP.NET status: @@ -19858,12 +42064,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/modubey/providers/Microsoft.RecoveryServices/vaults/test-v1/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19875,7 +42081,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:17 GMT + - Tue, 13 Jul 2021 09:09:27 GMT expires: - '-1' pragma: @@ -19891,7 +42097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '105' x-powered-by: - ASP.NET status: @@ -19911,12 +42117,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarcsstest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -19928,7 +42134,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:17 GMT + - Tue, 13 Jul 2021 09:09:27 GMT expires: - '-1' pragma: @@ -19944,7 +42150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '104' x-powered-by: - ASP.NET status: @@ -19964,30 +42170,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/sakaarhotfixtest/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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","isArchiveEnabled":false}},{"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":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-06-20T19:07:59.2133921Z","protectedItemDataId":"52777211426397","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T19:08:15.5701124Z","isArchiveEnabled":false}},{"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":"TransientUnhealthy","resourceHealthDetails":[{"code":400004,"title":"DataTransferFromVaultFailed","message":"Data - transfer from the vault failed.","recommendations":["Please retry the operation - in a few minutes. If the problem persists, please contact Microsoft support."]}]},"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-06-20T19:06:58.6662904Z","protectedItemDataId":"52778470662281","extendedProperties":{"linuxVmApplicationName":""},"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-06-20T19:07:00.4929841Z","isArchiveEnabled":false}},{"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;testvmdelete/protectedItems/VM;iaasvmcontainerv2;shswain-rg-donotuse;testvmdelete","name":"VM;iaasvmcontainerv2;shswain-rg-donotuse;testvmdelete","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmdelete","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/testvmdelete","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-20T21:02:54.4652302Z","protectedItemDataId":"52777700834425","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true},"linuxVmApplicationName":""},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-donotuse;testvmdelete","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/testvmdelete","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-20T21:02:57.4950728Z","isArchiveEnabled":false}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '8005' + - '12' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:17 GMT + - Tue, 13 Jul 2021 09:09:27 GMT expires: - '-1' pragma: @@ -20003,7 +42203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '119' x-powered-by: - ASP.NET status: @@ -20023,24 +42223,25 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735/backupProtectedItems?api-version=2021-01-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/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sakaarmab;sakaarhotfixtest/protectedItems/VM;iaasvmcontainerv2;sakaarmab;sakaarhotfixtest","name":"VM;iaasvmcontainerv2;sakaarmab;sakaarhotfixtest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sakaarhotfixtest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Compute/virtualMachines/sakaarhotfixtest","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-07-12T19:34:45.3557357Z","protectedItemDataId":"350253539","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sakaarmab;sakaarhotfixtest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Compute/virtualMachines/sakaarhotfixtest","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.RecoveryServices/vaults/vault735/backupPolicies/DailyPolicy","policyName":"DailyPolicy","lastRecoveryPoint":"2021-07-12T19:34:48.4418051Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1825' content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:18 GMT + - Tue, 13 Jul 2021 09:09:28 GMT expires: - '-1' pragma: @@ -20056,7 +42257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '113' x-powered-by: - ASP.NET status: @@ -20076,12 +42277,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcms/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -20093,7 +42294,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:18 GMT + - Tue, 13 Jul 2021 09:09:29 GMT expires: - '-1' pragma: @@ -20109,7 +42310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '116' x-powered-by: - ASP.NET status: @@ -20129,12 +42330,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.RecoveryServices/vaults/newRegionVal/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -20146,7 +42347,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:18 GMT + - Tue, 13 Jul 2021 09:09:31 GMT expires: - '-1' pragma: @@ -20162,7 +42363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '116' x-powered-by: - ASP.NET status: @@ -20182,12 +42383,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabcm/providers/Microsoft.RecoveryServices/vaults/mabcmtesting/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -20199,7 +42400,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:20 GMT + - Tue, 13 Jul 2021 09:09:32 GMT expires: - '-1' pragma: @@ -20215,7 +42416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '115' x-powered-by: - ASP.NET status: @@ -20235,8 +42436,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -20252,7 +42453,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:19 GMT + - Tue, 13 Jul 2021 09:09:34 GMT expires: - '-1' pragma: @@ -20278,7 +42479,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -20290,9 +42491,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -20302,7 +42503,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:14:23 GMT + - Tue, 13 Jul 2021 09:09: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 b82a40e9d99..004f85bfb17 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-06-21T14%3A14%3A30.5085878Z''\"","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-07-13T14%3A19%3A11.7112062Z''\"","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 @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:30 GMT + - Tue, 13 Jul 2021 14:19:12 GMT expires: - '-1' pragma: @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:31 GMT + - Tue, 13 Jul 2021 14:19:11 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:14:32 GMT + - Tue, 13 Jul 2021 14:19:12 GMT expires: - '-1' pragma: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T14:14:25Z"},"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-07-13T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:14:31 GMT + - Tue, 13 Jul 2021 14:19:14 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 14:14:32 GMT + - Tue, 13 Jul 2021 14:19:14 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 14:19:32 GMT + - Tue, 13 Jul 2021 14:24:14 GMT source-age: - - '245' + - '23' strict-transport-security: - max-age=31536000 vary: @@ -285,15 +286,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 1b5610d64d0616596511802c5de94be4052665f2 + - c4cdca29d6f15bd86138bbe981bc4c502473f6d9 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1270-QPG + - cache-qpg1229-QPG x-timer: - - S1624284873.755412,VS0,VE1 + - S1626185954.355245,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:14:32 GMT + - Tue, 13 Jul 2021 14:19:14 GMT expires: - '-1' pragma: @@ -395,23 +396,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_aPpsKIsnTzYr4UnsDTg3Nd55Lu7y8Kr2","name":"vm_deploy_aPpsKIsnTzYr4UnsDTg3Nd55Lu7y8Kr2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3780915783169199356","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T14:14:34.4647757Z","duration":"PT0.9786955S","correlationId":"b74a5114-81c8-408f-a440-8db0bdd954d1","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_E6Qb1nlgiPPNToukp23NYgtEzdcjvbMx","name":"vm_deploy_E6Qb1nlgiPPNToukp23NYgtEzdcjvbMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13781666177090819900","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T14:19:16.9181924Z","duration":"PT1.0957278S","correlationId":"e7ecfea0-6cad-460c-876d-1ccaae657cc0","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_aPpsKIsnTzYr4UnsDTg3Nd55Lu7y8Kr2/operationStatuses/08585773220119915577?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_E6Qb1nlgiPPNToukp23NYgtEzdcjvbMx/operationStatuses/08585754209296551697?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2960' + - '2961' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:14:34 GMT + - Tue, 13 Jul 2021 14:19:17 GMT expires: - '-1' pragma: @@ -439,9 +440,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773220119915577?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/08585754209296551697?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:04 GMT + - Tue, 13 Jul 2021 14:19:47 GMT expires: - '-1' pragma: @@ -481,9 +482,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773220119915577?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/08585754209296551697?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:35 GMT + - Tue, 13 Jul 2021 14:20:17 GMT expires: - '-1' pragma: @@ -523,12 +524,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aPpsKIsnTzYr4UnsDTg3Nd55Lu7y8Kr2","name":"vm_deploy_aPpsKIsnTzYr4UnsDTg3Nd55Lu7y8Kr2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3780915783169199356","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T14:15:17.5230976Z","duration":"PT44.0370174S","correlationId":"b74a5114-81c8-408f-a440-8db0bdd954d1","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_E6Qb1nlgiPPNToukp23NYgtEzdcjvbMx","name":"vm_deploy_E6Qb1nlgiPPNToukp23NYgtEzdcjvbMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13781666177090819900","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T14:20:06.116327Z","duration":"PT50.2938624S","correlationId":"e7ecfea0-6cad-460c-876d-1ccaae657cc0","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 @@ -537,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:35 GMT + - Tue, 13 Jul 2021 14:20:17 GMT expires: - '-1' pragma: @@ -565,7 +566,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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=2021-03-01 response: @@ -574,16 +575,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\": \"f2eddf5b-8475-4aae-9f81-bde4218c4bff\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4f7b1001-be7b-43e0-976c-899dbdaed411\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_fba601b76e03465f886965ead779dc5d\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_a7fb450e7b2b49c189529392f727eec8\",\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_fba601b76e03465f886965ead779dc5d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_disk1_a7fb450e7b2b49c189529392f727eec8\"\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\": @@ -597,16 +598,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\": \"2021-06-21T14:15:35+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T14:20:18+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_disk1_fba601b76e03465f886965ead779dc5d\",\r\n \"statuses\": + \"clitest-vm000004_disk1_a7fb450e7b2b49c189529392f727eec8\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T14:14:52.8500085+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:19:42.5134219+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T14:15:13.6625935+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:20:03.1383378+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}" @@ -618,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:35 GMT + - Tue, 13 Jul 2021 14:20:18 GMT expires: - '-1' pragma: @@ -635,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31935 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -653,20 +654,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"f1a5ca5e-0925-43ce-9969-467336f0fcce\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"a332eecf-60ef-47da-a272-fbf589e88693\\\"\",\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\": \"b4b7e5dd-23db-4d20-93a3-80b99ce74419\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b1b0176e-5c21-4054-a268-f2c4126ce723\",\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/\\\"f1a5ca5e-0925-43ce-9969-467336f0fcce\\\"\",\r\n + \ \"etag\": \"W/\\\"a332eecf-60ef-47da-a272-fbf589e88693\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +676,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\": - \"f3rmjqiralcexecbmz3tytwl3d.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-A0-6D-18\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"qsdjv4tvzowefbc1zhmyzywiqd.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-56-2A-E3\",\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\": @@ -690,9 +691,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:35 GMT + - Tue, 13 Jul 2021 14:20:18 GMT etag: - - W/"f1a5ca5e-0925-43ce-9969-467336f0fcce" + - W/"a332eecf-60ef-47da-a272-fbf589e88693" expires: - '-1' pragma: @@ -709,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ebb89f2-c002-449c-b993-857a47861555 + - 657498f7-60bf-4105-8de5-58cdc64a9582 status: code: 200 message: OK @@ -727,18 +728,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"4bbc243d-012a-4bb6-b048-98293fa8a6c3\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ab518920-e807-490b-a11a-b0d3661d8ca9\\\"\",\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\": \"5e2e27cc-3d0a-468b-9c8c-fa03ab90b1d5\",\r\n - \ \"ipAddress\": \"20.205.227.70\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c182abc2-7c5a-4ab6-ba91-a23701570cce\",\r\n + \ \"ipAddress\": \"13.76.99.176\",\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 @@ -747,13 +748,13 @@ interactions: cache-control: - no-cache content-length: - - '1182' + - '1181' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:36 GMT + - Tue, 13 Jul 2021 14:20:18 GMT etag: - - W/"4bbc243d-012a-4bb6-b048-98293fa8a6c3" + - W/"ab518920-e807-490b-a11a-b0d3661d8ca9" expires: - '-1' pragma: @@ -770,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9185bced-1bf3-4e1d-b073-db4073671736 + - 90ae93a9-d004-46b4-b715-66031e291934 status: code: 200 message: OK @@ -788,7 +789,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (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?api-version=2021-03-01 response: @@ -797,16 +798,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\": \"f2eddf5b-8475-4aae-9f81-bde4218c4bff\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4f7b1001-be7b-43e0-976c-899dbdaed411\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_fba601b76e03465f886965ead779dc5d\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_a7fb450e7b2b49c189529392f727eec8\",\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_fba601b76e03465f886965ead779dc5d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_disk1_a7fb450e7b2b49c189529392f727eec8\"\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\": @@ -824,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:15:36 GMT + - Tue, 13 Jul 2021 14:20:18 GMT expires: - '-1' pragma: @@ -841,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31934 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31993 status: code: 200 message: OK @@ -859,12 +860,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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-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?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-06-21T14%3A14%3A30.5085878Z''\"","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-07-13T14%3A19%3A11.7112062Z''\"","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 @@ -873,7 +874,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:36 GMT + - Tue, 13 Jul 2021 14:20:19 GMT expires: - '-1' pragma: @@ -905,15 +906,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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":["2021-06-22T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-22T00: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-vault000003/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-07-14T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -922,7 +923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:36 GMT + - Tue, 13 Jul 2021 14:20:19 GMT expires: - '-1' pragma: @@ -938,7 +939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -958,24 +959,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgl47atb3bv7oiljrwzoaj2s6tolaodraxmvutnvhyoydt6dtfpwove5ixniouhi3gb;clitest-vm55vzb/protectableItems/vm;iaasvmcontainerv2;clitest.rgl47atb3bv7oiljrwzoaj2s6tolaodraxmvutnvhyoydt6dtfpwove5ixniouhi3gb;clitest-vm55vzb","name":"iaasvmcontainerv2;clitest.rgl47atb3bv7oiljrwzoaj2s6tolaodraxmvutnvhyoydt6dtfpwove5ixniouhi3gb;clitest-vm55vzb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl47atb3bv7oiljrwzoaj2s6tolaodraxmvutnvhyoydt6dtfpwove5ixniouhi3gb/providers/Microsoft.Compute/virtualMachines/clitest-vm55vzb","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgl47atb3bv7oiljrwzoaj2s6tolaodraxmvutnvhyoydt6dtfpwove5ixniouhi3gb","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm55vzb","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/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-vault000003/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-vault000003/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-vault000003/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-vault000003/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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '3231' content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:37 GMT + - Tue, 13 Jul 2021 14:20:20 GMT expires: - '-1' pragma: @@ -1013,8 +1014,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -1024,17 +1025,17 @@ interactions: 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/fd61599c-f014-4251-9e61-77683f040883?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/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:38 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1062,12 +1063,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1077,11 +1078,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:38 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1109,12 +1110,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1124,11 +1125,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:39 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1156,12 +1157,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1171,11 +1172,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:40 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1203,12 +1204,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1218,11 +1219,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:41 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1250,12 +1251,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1265,11 +1266,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:43 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1297,12 +1298,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1312,11 +1313,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:44 GMT + - Tue, 13 Jul 2021 14:20: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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1344,12 +1345,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1359,11 +1360,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:45 GMT + - Tue, 13 Jul 2021 14:20:29 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1391,12 +1392,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1406,11 +1407,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:46 GMT + - Tue, 13 Jul 2021 14:20:31 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1438,12 +1439,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1453,11 +1454,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:47 GMT + - Tue, 13 Jul 2021 14:20: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/operationResults/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1485,12 +1486,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/fd61599c-f014-4251-9e61-77683f040883?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/608e7c0c-f24b-45f7-862b-7c49db43df58?api-version=2021-01-01 response: body: string: '' @@ -1498,7 +1499,7 @@ interactions: cache-control: - no-cache date: - - Mon, 21 Jun 2021 14:15:49 GMT + - Tue, 13 Jul 2021 14:20:33 GMT expires: - '-1' pragma: @@ -1528,24 +1529,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/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-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;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-vault000003/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-vault000003/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-vault000003/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-vault000003/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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:50 GMT + - Tue, 13 Jul 2021 14:20:34 GMT expires: - '-1' pragma: @@ -1561,7 +1562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -1587,8 +1588,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -1598,17 +1599,17 @@ interactions: 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + - 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/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:15:50 GMT + - Tue, 13 Jul 2021 14:20:34 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + - 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/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1616,7 +1617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1636,15 +1637,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1653,7 +1654,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:51 GMT + - Tue, 13 Jul 2021 14:20:35 GMT expires: - '-1' pragma: @@ -1669,7 +1670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '66' x-powered-by: - ASP.NET status: @@ -1689,15 +1690,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1706,7 +1707,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:52 GMT + - Tue, 13 Jul 2021 14:20:36 GMT expires: - '-1' pragma: @@ -1722,7 +1723,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '65' x-powered-by: - ASP.NET status: @@ -1742,15 +1743,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1759,7 +1760,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:53 GMT + - Tue, 13 Jul 2021 14:20:37 GMT expires: - '-1' pragma: @@ -1775,7 +1776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '64' x-powered-by: - ASP.NET status: @@ -1795,15 +1796,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1812,7 +1813,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:54 GMT + - Tue, 13 Jul 2021 14:20:39 GMT expires: - '-1' pragma: @@ -1828,7 +1829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '63' x-powered-by: - ASP.NET status: @@ -1848,15 +1849,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1865,7 +1866,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:55 GMT + - Tue, 13 Jul 2021 14:20:40 GMT expires: - '-1' pragma: @@ -1881,7 +1882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '62' x-powered-by: - ASP.NET status: @@ -1901,15 +1902,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1918,7 +1919,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:57 GMT + - Tue, 13 Jul 2021 14:20:41 GMT expires: - '-1' pragma: @@ -1934,7 +1935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '61' x-powered-by: - ASP.NET status: @@ -1954,15 +1955,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1971,7 +1972,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:58 GMT + - Tue, 13 Jul 2021 14:20:42 GMT expires: - '-1' pragma: @@ -1987,7 +1988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '60' x-powered-by: - ASP.NET status: @@ -2007,15 +2008,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2024,7 +2025,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:15:59 GMT + - Tue, 13 Jul 2021 14:20:43 GMT expires: - '-1' pragma: @@ -2040,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '59' x-powered-by: - ASP.NET status: @@ -2060,15 +2061,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2077,7 +2078,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:00 GMT + - Tue, 13 Jul 2021 14:20:45 GMT expires: - '-1' pragma: @@ -2093,7 +2094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '58' x-powered-by: - ASP.NET status: @@ -2113,15 +2114,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2130,7 +2131,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:02 GMT + - Tue, 13 Jul 2021 14:20:46 GMT expires: - '-1' pragma: @@ -2146,7 +2147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '57' x-powered-by: - ASP.NET status: @@ -2166,15 +2167,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2183,7 +2184,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:03 GMT + - Tue, 13 Jul 2021 14:20:47 GMT expires: - '-1' pragma: @@ -2199,7 +2200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '56' x-powered-by: - ASP.NET status: @@ -2219,15 +2220,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2236,7 +2237,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:04 GMT + - Tue, 13 Jul 2021 14:20:48 GMT expires: - '-1' pragma: @@ -2252,7 +2253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '55' x-powered-by: - ASP.NET status: @@ -2272,15 +2273,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2289,7 +2290,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:05 GMT + - Tue, 13 Jul 2021 14:20:49 GMT expires: - '-1' pragma: @@ -2305,7 +2306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '54' x-powered-by: - ASP.NET status: @@ -2325,15 +2326,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2342,7 +2343,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:07 GMT + - Tue, 13 Jul 2021 14:20:51 GMT expires: - '-1' pragma: @@ -2358,7 +2359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '53' x-powered-by: - ASP.NET status: @@ -2378,15 +2379,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2395,7 +2396,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:08 GMT + - Tue, 13 Jul 2021 14:20:52 GMT expires: - '-1' pragma: @@ -2411,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '52' x-powered-by: - ASP.NET status: @@ -2431,15 +2432,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2448,7 +2449,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:09 GMT + - Tue, 13 Jul 2021 14:20:53 GMT expires: - '-1' pragma: @@ -2464,7 +2465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '51' x-powered-by: - ASP.NET status: @@ -2484,15 +2485,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2501,7 +2502,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:10 GMT + - Tue, 13 Jul 2021 14:20:54 GMT expires: - '-1' pragma: @@ -2517,7 +2518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '50' x-powered-by: - ASP.NET status: @@ -2537,15 +2538,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2554,7 +2555,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:11 GMT + - Tue, 13 Jul 2021 14:20:55 GMT expires: - '-1' pragma: @@ -2570,7 +2571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '49' x-powered-by: - ASP.NET status: @@ -2590,15 +2591,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2607,7 +2608,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:13 GMT + - Tue, 13 Jul 2021 14:20:57 GMT expires: - '-1' pragma: @@ -2623,7 +2624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '48' x-powered-by: - ASP.NET status: @@ -2643,15 +2644,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2660,7 +2661,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:14 GMT + - Tue, 13 Jul 2021 14:20:58 GMT expires: - '-1' pragma: @@ -2676,7 +2677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '47' x-powered-by: - ASP.NET status: @@ -2696,15 +2697,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2713,7 +2714,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:15 GMT + - Tue, 13 Jul 2021 14:20:59 GMT expires: - '-1' pragma: @@ -2729,7 +2730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '46' x-powered-by: - ASP.NET status: @@ -2749,15 +2750,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2766,7 +2767,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:16 GMT + - Tue, 13 Jul 2021 14:21:00 GMT expires: - '-1' pragma: @@ -2782,7 +2783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '45' x-powered-by: - ASP.NET status: @@ -2802,15 +2803,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2819,7 +2820,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:18 GMT + - Tue, 13 Jul 2021 14:21:01 GMT expires: - '-1' pragma: @@ -2835,7 +2836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '44' x-powered-by: - ASP.NET status: @@ -2855,15 +2856,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2872,7 +2873,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:19 GMT + - Tue, 13 Jul 2021 14:21:03 GMT expires: - '-1' pragma: @@ -2888,7 +2889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '43' x-powered-by: - ASP.NET status: @@ -2908,15 +2909,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2925,7 +2926,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:20 GMT + - Tue, 13 Jul 2021 14:21:04 GMT expires: - '-1' pragma: @@ -2941,7 +2942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '42' x-powered-by: - ASP.NET status: @@ -2961,15 +2962,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2978,7 +2979,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:21 GMT + - Tue, 13 Jul 2021 14:21:05 GMT expires: - '-1' pragma: @@ -2994,7 +2995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '41' x-powered-by: - ASP.NET status: @@ -3014,15 +3015,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3031,7 +3032,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:23 GMT + - Tue, 13 Jul 2021 14:21:06 GMT expires: - '-1' pragma: @@ -3047,7 +3048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '40' x-powered-by: - ASP.NET status: @@ -3067,15 +3068,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3084,7 +3085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:24 GMT + - Tue, 13 Jul 2021 14:21:07 GMT expires: - '-1' pragma: @@ -3100,7 +3101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '39' x-powered-by: - ASP.NET status: @@ -3120,15 +3121,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3137,7 +3138,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:25 GMT + - Tue, 13 Jul 2021 14:21:09 GMT expires: - '-1' pragma: @@ -3153,7 +3154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '38' x-powered-by: - ASP.NET status: @@ -3173,15 +3174,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3190,7 +3191,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:26 GMT + - Tue, 13 Jul 2021 14:21:10 GMT expires: - '-1' pragma: @@ -3206,7 +3207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '37' x-powered-by: - ASP.NET status: @@ -3226,15 +3227,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3243,7 +3244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:27 GMT + - Tue, 13 Jul 2021 14:21:11 GMT expires: - '-1' pragma: @@ -3259,7 +3260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '36' x-powered-by: - ASP.NET status: @@ -3279,15 +3280,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3296,7 +3297,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:29 GMT + - Tue, 13 Jul 2021 14:21:12 GMT expires: - '-1' pragma: @@ -3312,7 +3313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '35' x-powered-by: - ASP.NET status: @@ -3332,15 +3333,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3349,7 +3350,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:30 GMT + - Tue, 13 Jul 2021 14:21:13 GMT expires: - '-1' pragma: @@ -3365,7 +3366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '34' x-powered-by: - ASP.NET status: @@ -3385,15 +3386,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3402,7 +3403,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:31 GMT + - Tue, 13 Jul 2021 14:21:15 GMT expires: - '-1' pragma: @@ -3418,7 +3419,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '33' x-powered-by: - ASP.NET status: @@ -3438,15 +3439,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3455,7 +3456,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:33 GMT + - Tue, 13 Jul 2021 14:21:16 GMT expires: - '-1' pragma: @@ -3471,7 +3472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '32' x-powered-by: - ASP.NET status: @@ -3491,15 +3492,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3508,7 +3509,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:34 GMT + - Tue, 13 Jul 2021 14:21:17 GMT expires: - '-1' pragma: @@ -3524,7 +3525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '31' x-powered-by: - ASP.NET status: @@ -3544,15 +3545,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3561,7 +3562,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:35 GMT + - Tue, 13 Jul 2021 14:21:18 GMT expires: - '-1' pragma: @@ -3577,7 +3578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '30' x-powered-by: - ASP.NET status: @@ -3597,15 +3598,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3614,7 +3615,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:36 GMT + - Tue, 13 Jul 2021 14:21:19 GMT expires: - '-1' pragma: @@ -3630,7 +3631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '29' x-powered-by: - ASP.NET status: @@ -3650,15 +3651,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3667,7 +3668,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:38 GMT + - Tue, 13 Jul 2021 14:21:21 GMT expires: - '-1' pragma: @@ -3683,7 +3684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '28' x-powered-by: - ASP.NET status: @@ -3703,15 +3704,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3720,7 +3721,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:39 GMT + - Tue, 13 Jul 2021 14:21:22 GMT expires: - '-1' pragma: @@ -3736,7 +3737,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '27' x-powered-by: - ASP.NET status: @@ -3756,15 +3757,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3773,7 +3774,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:40 GMT + - Tue, 13 Jul 2021 14:21:23 GMT expires: - '-1' pragma: @@ -3789,7 +3790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '26' x-powered-by: - ASP.NET status: @@ -3809,15 +3810,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3826,7 +3827,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:42 GMT + - Tue, 13 Jul 2021 14:21:25 GMT expires: - '-1' pragma: @@ -3842,7 +3843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '25' x-powered-by: - ASP.NET status: @@ -3862,15 +3863,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3879,7 +3880,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:43 GMT + - Tue, 13 Jul 2021 14:21:27 GMT expires: - '-1' pragma: @@ -3895,7 +3896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '24' x-powered-by: - ASP.NET status: @@ -3915,15 +3916,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3932,7 +3933,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:44 GMT + - Tue, 13 Jul 2021 14:21:28 GMT expires: - '-1' pragma: @@ -3948,7 +3949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '23' x-powered-by: - ASP.NET status: @@ -3968,15 +3969,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3985,7 +3986,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:45 GMT + - Tue, 13 Jul 2021 14:21:29 GMT expires: - '-1' pragma: @@ -4001,7 +4002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '22' x-powered-by: - ASP.NET status: @@ -4021,15 +4022,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4038,7 +4039,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:47 GMT + - Tue, 13 Jul 2021 14:21:30 GMT expires: - '-1' pragma: @@ -4054,7 +4055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '21' x-powered-by: - ASP.NET status: @@ -4074,15 +4075,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4091,7 +4092,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:48 GMT + - Tue, 13 Jul 2021 14:21:32 GMT expires: - '-1' pragma: @@ -4107,7 +4108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '20' x-powered-by: - ASP.NET status: @@ -4127,15 +4128,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4144,7 +4145,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:49 GMT + - Tue, 13 Jul 2021 14:21:33 GMT expires: - '-1' pragma: @@ -4160,7 +4161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '19' x-powered-by: - ASP.NET status: @@ -4180,15 +4181,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4197,7 +4198,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:50 GMT + - Tue, 13 Jul 2021 14:21:34 GMT expires: - '-1' pragma: @@ -4213,7 +4214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '18' x-powered-by: - ASP.NET status: @@ -4233,15 +4234,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4250,7 +4251,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:52 GMT + - Tue, 13 Jul 2021 14:21:35 GMT expires: - '-1' pragma: @@ -4266,7 +4267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '17' x-powered-by: - ASP.NET status: @@ -4286,15 +4287,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4303,7 +4304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:53 GMT + - Tue, 13 Jul 2021 14:21:36 GMT expires: - '-1' pragma: @@ -4319,7 +4320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '16' x-powered-by: - ASP.NET status: @@ -4339,15 +4340,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4356,7 +4357,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:54 GMT + - Tue, 13 Jul 2021 14:21:38 GMT expires: - '-1' pragma: @@ -4372,7 +4373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '15' x-powered-by: - ASP.NET status: @@ -4392,15 +4393,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4409,7 +4410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:55 GMT + - Tue, 13 Jul 2021 14:21:39 GMT expires: - '-1' pragma: @@ -4425,7 +4426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '14' x-powered-by: - ASP.NET status: @@ -4445,15 +4446,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4462,7 +4463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:56 GMT + - Tue, 13 Jul 2021 14:21:40 GMT expires: - '-1' pragma: @@ -4478,7 +4479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '13' x-powered-by: - ASP.NET status: @@ -4498,15 +4499,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4515,7 +4516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:57 GMT + - Tue, 13 Jul 2021 14:21:42 GMT expires: - '-1' pragma: @@ -4531,7 +4532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '12' x-powered-by: - ASP.NET status: @@ -4551,15 +4552,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4568,7 +4569,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:16:59 GMT + - Tue, 13 Jul 2021 14:21:43 GMT expires: - '-1' pragma: @@ -4584,7 +4585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '11' x-powered-by: - ASP.NET status: @@ -4604,15 +4605,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4621,7 +4622,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:01 GMT + - Tue, 13 Jul 2021 14:21:44 GMT expires: - '-1' pragma: @@ -4637,7 +4638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '10' x-powered-by: - ASP.NET status: @@ -4657,15 +4658,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4674,7 +4675,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:02 GMT + - Tue, 13 Jul 2021 14:21:45 GMT expires: - '-1' pragma: @@ -4690,7 +4691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '9' x-powered-by: - ASP.NET status: @@ -4710,15 +4711,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4727,7 +4728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:04 GMT + - Tue, 13 Jul 2021 14:21:46 GMT expires: - '-1' pragma: @@ -4743,7 +4744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '8' x-powered-by: - ASP.NET status: @@ -4763,15 +4764,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4780,7 +4781,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:05 GMT + - Tue, 13 Jul 2021 14:21:48 GMT expires: - '-1' pragma: @@ -4796,7 +4797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '7' x-powered-by: - ASP.NET status: @@ -4816,15 +4817,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4833,7 +4834,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:06 GMT + - Tue, 13 Jul 2021 14:21:49 GMT expires: - '-1' pragma: @@ -4849,7 +4850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '6' x-powered-by: - ASP.NET status: @@ -4869,15 +4870,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4886,7 +4887,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:07 GMT + - Tue, 13 Jul 2021 14:21:50 GMT expires: - '-1' pragma: @@ -4902,7 +4903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '5' x-powered-by: - ASP.NET status: @@ -4922,15 +4923,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4939,7 +4940,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:09 GMT + - Tue, 13 Jul 2021 14:21:51 GMT expires: - '-1' pragma: @@ -4955,7 +4956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '4' x-powered-by: - ASP.NET status: @@ -4975,15 +4976,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4992,7 +4993,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:10 GMT + - Tue, 13 Jul 2021 14:21:52 GMT expires: - '-1' pragma: @@ -5008,7 +5009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '3' x-powered-by: - ASP.NET status: @@ -5028,15 +5029,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5045,7 +5046,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:11 GMT + - Tue, 13 Jul 2021 14:21:54 GMT expires: - '-1' pragma: @@ -5061,7 +5062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '2' x-powered-by: - ASP.NET status: @@ -5081,15 +5082,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5098,7 +5099,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:12 GMT + - Tue, 13 Jul 2021 14:21:55 GMT expires: - '-1' pragma: @@ -5114,7 +5115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '1' x-powered-by: - ASP.NET status: @@ -5134,15 +5135,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5151,7 +5152,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:13 GMT + - Tue, 13 Jul 2021 14:21:56 GMT expires: - '-1' pragma: @@ -5167,7 +5168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '0' x-powered-by: - ASP.NET status: @@ -5187,15 +5188,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"InProgress","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5204,7 +5205,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:15 GMT + - Tue, 13 Jul 2021 14:21:57 GMT expires: - '-1' pragma: @@ -5220,7 +5221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '-1' x-powered-by: - ASP.NET status: @@ -5240,24 +5241,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/329b0b5d-687f-41a2-84db-006ab53cc069?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"329b0b5d-687f-41a2-84db-006ab53cc069","name":"329b0b5d-687f-41a2-84db-006ab53cc069","status":"Succeeded","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"2021-07-13T14:20:35.0527174Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"04be011f-8a0e-4077-a494-a18adcdfdefa"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:17 GMT + - Tue, 13 Jul 2021 14:27:23 GMT expires: - '-1' pragma: @@ -5273,7 +5274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '149' x-powered-by: - ASP.NET status: @@ -5293,30 +5294,32 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/04be011f-8a0e-4077-a494-a18adcdfdefa?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/04be011f-8a0e-4077-a494-a18adcdfdefa","name":"04be011f-8a0e-4077-a494-a18adcdfdefa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M32.3200905S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:20:35.0527174Z","endTime":"2021-07-13T14:22:07.3728079Z","activityId":"7230c494-e3e5-11eb-8cd3-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '970' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:18 GMT + - Tue, 13 Jul 2021 14:27: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: @@ -5326,7 +5329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '149' x-powered-by: - ASP.NET status: @@ -5340,30 +5343,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + 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":"17592257919720","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","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1988' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:19 GMT + - Tue, 13 Jul 2021 14:27:25 GMT expires: - '-1' pragma: @@ -5379,65 +5382,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + 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=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 14:17:20 GMT + - Tue, 13 Jul 2021 14:27: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/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + 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: @@ -5446,21 +5450,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42","name":"d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5469,7 +5473,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:21 GMT + - Tue, 13 Jul 2021 14:27:26 GMT expires: - '-1' pragma: @@ -5485,7 +5489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '149' x-powered-by: - ASP.NET status: @@ -5499,30 +5503,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"InProgress","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42","name":"d1ad5fb9-c157-4a7a-aa78-0bb3bafa4d42","status":"Succeeded","startTime":"2021-07-13T14:27:26.6013929Z","endTime":"2021-07-13T14:27:26.6013929Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1ca0a26b-a8b9-417f-bf98-146d7ee05059"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:22 GMT + - Tue, 13 Jul 2021 14:27:27 GMT expires: - '-1' pragma: @@ -5538,7 +5542,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '148' x-powered-by: - ASP.NET status: @@ -5552,36 +5556,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/4430906e-f441-41d6-a12e-4984c8173fd4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"4430906e-f441-41d6-a12e-4984c8173fd4","name":"4430906e-f441-41d6-a12e-4984c8173fd4","status":"Succeeded","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"2021-06-21T14:15:50.9106418Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"87eafb61-c2c5-4f67-b7d2-b6379e80b1f6"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.3340294S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:24 GMT + - Tue, 13 Jul 2021 14:27: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: @@ -5591,7 +5599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '145' x-powered-by: - ASP.NET status: @@ -5605,31 +5613,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/87eafb61-c2c5-4f67-b7d2-b6379e80b1f6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/87eafb61-c2c5-4f67-b7d2-b6379e80b1f6","name":"87eafb61-c2c5-4f67-b7d2-b6379e80b1f6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M33.1474619S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T14:15:50.9106418Z","endTime":"2021-06-21T14:17:24.0581037Z","activityId":"25c1c5ea-d29b-11eb-b0d1-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.9845118S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '970' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:24 GMT + - Tue, 13 Jul 2021 14:27:31 GMT expires: - '-1' pragma: @@ -5646,7 +5656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -5660,36 +5670,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$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/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-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":"35185591218593","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","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5.5652903S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1988' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:24 GMT + - Tue, 13 Jul 2021 14:27: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: @@ -5699,66 +5713,69 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '147' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35.9616395S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' 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/b58bf850-b836-4060-981e-5f7668c2f700?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '1157' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:17:25 GMT + - Tue, 13 Jul 2021 14:28:02 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/b58bf850-b836-4060-981e-5f7668c2f700?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + 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: @@ -5767,36 +5784,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/b58bf850-b836-4060-981e-5f7668c2f700?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"b58bf850-b836-4060-981e-5f7668c2f700","name":"b58bf850-b836-4060-981e-5f7668c2f700","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M6.5729818S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:25 GMT + - Tue, 13 Jul 2021 14:28: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: @@ -5806,7 +5827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -5820,36 +5841,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/b58bf850-b836-4060-981e-5f7668c2f700?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"b58bf850-b836-4060-981e-5f7668c2f700","name":"b58bf850-b836-4060-981e-5f7668c2f700","status":"Succeeded","startTime":"2021-06-21T14:17:25.9938735Z","endTime":"2021-06-21T14:17:25.9938735Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1f2a2e11-25cf-476b-b3d8-faf79513ff95"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M37.117454S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:26 GMT + - Tue, 13 Jul 2021 14:29: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: @@ -5859,7 +5884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -5873,33 +5898,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1.6414448S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M7.6466178S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:28 GMT + - Tue, 13 Jul 2021 14:29:34 GMT expires: - '-1' pragma: @@ -5916,7 +5941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '142' x-powered-by: - ASP.NET status: @@ -5936,27 +5961,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.8812224S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M38.2439579S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:28 GMT + - Tue, 13 Jul 2021 14:30:05 GMT expires: - '-1' pragma: @@ -5973,7 +5998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -5993,27 +6018,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.2232275S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M8.7455018S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:28 GMT + - Tue, 13 Jul 2021 14:30:35 GMT expires: - '-1' pragma: @@ -6030,7 +6055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -6050,18 +6075,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33.6043169S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M39.26526S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6070,7 +6095,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:17:59 GMT + - Tue, 13 Jul 2021 14:31:05 GMT expires: - '-1' pragma: @@ -6087,7 +6112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -6107,27 +6132,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M3.9974689S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M10.6018985S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:18:29 GMT + - Tue, 13 Jul 2021 14:31:36 GMT expires: - '-1' pragma: @@ -6144,7 +6169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -6164,18 +6189,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M34.5105926S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M41.0572097S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6184,7 +6209,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:19:00 GMT + - Tue, 13 Jul 2021 14:32:08 GMT expires: - '-1' pragma: @@ -6201,7 +6226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -6221,27 +6246,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M4.9636066S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M11.8833787S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:19:31 GMT + - Tue, 13 Jul 2021 14:32:38 GMT expires: - '-1' pragma: @@ -6258,7 +6283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -6278,18 +6303,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M35.3513144S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M42.3134701S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6298,7 +6323,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:20:01 GMT + - Tue, 13 Jul 2021 14:33:08 GMT expires: - '-1' pragma: @@ -6315,7 +6340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -6335,27 +6360,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.8140893S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M12.8065194S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:20:32 GMT + - Tue, 13 Jul 2021 14:33:39 GMT expires: - '-1' pragma: @@ -6372,7 +6397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '134' x-powered-by: - ASP.NET status: @@ -6392,27 +6417,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M36.35102S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M43.2622098S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:21:02 GMT + - Tue, 13 Jul 2021 14:34:09 GMT expires: - '-1' pragma: @@ -6429,7 +6454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '133' x-powered-by: - ASP.NET status: @@ -6449,27 +6474,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M6.7686513S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M13.6827806S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:21:33 GMT + - Tue, 13 Jul 2021 14:34:39 GMT expires: - '-1' pragma: @@ -6486,7 +6511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '132' x-powered-by: - ASP.NET status: @@ -6506,27 +6531,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M37.2749673S","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-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M44.2048719S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:22:03 GMT + - Tue, 13 Jul 2021 14:35:11 GMT expires: - '-1' pragma: @@ -6543,7 +6568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '131' x-powered-by: - ASP.NET status: @@ -6563,18 +6588,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M7.6924574S","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-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M14.6889001S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6583,7 +6608,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:22:33 GMT + - Tue, 13 Jul 2021 14:35:41 GMT expires: - '-1' pragma: @@ -6600,7 +6625,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '130' x-powered-by: - ASP.NET status: @@ -6620,27 +6645,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M39.5053751S","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-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M45.1275611S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:23:05 GMT + - Tue, 13 Jul 2021 14:36:11 GMT expires: - '-1' pragma: @@ -6657,7 +6682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '129' x-powered-by: - ASP.NET status: @@ -6677,18 +6702,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M9.9044878S","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-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M15.5148831S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6697,7 +6722,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:23:36 GMT + - Tue, 13 Jul 2021 14:36:42 GMT expires: - '-1' pragma: @@ -6714,7 +6739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '128' x-powered-by: - ASP.NET status: @@ -6734,27 +6759,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M40.2952785S","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-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M45.9193964S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:24:06 GMT + - Tue, 13 Jul 2021 14:37:12 GMT expires: - '-1' pragma: @@ -6771,7 +6796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '127' x-powered-by: - ASP.NET status: @@ -6791,18 +6816,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M10.7103133S","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-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M16.2778184S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6811,7 +6836,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:24:37 GMT + - Tue, 13 Jul 2021 14:37:42 GMT expires: - '-1' pragma: @@ -6828,7 +6853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '126' x-powered-by: - ASP.NET status: @@ -6848,27 +6873,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M41.2119304S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M46.9206347S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:25:07 GMT + - Tue, 13 Jul 2021 14:38:13 GMT expires: - '-1' pragma: @@ -6885,7 +6910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '125' x-powered-by: - ASP.NET status: @@ -6905,27 +6930,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M11.6055528S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M17.3732316S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:25:37 GMT + - Tue, 13 Jul 2021 14:38:43 GMT expires: - '-1' pragma: @@ -6942,7 +6967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '124' x-powered-by: - ASP.NET status: @@ -6962,27 +6987,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M42.053076S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M47.8481772S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:26:08 GMT + - Tue, 13 Jul 2021 14:39:14 GMT expires: - '-1' pragma: @@ -6999,7 +7024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '123' x-powered-by: - ASP.NET status: @@ -7019,27 +7044,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M12.5524572S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M18.5255821S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:26:38 GMT + - Tue, 13 Jul 2021 14:39:44 GMT expires: - '-1' pragma: @@ -7056,7 +7081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '122' x-powered-by: - ASP.NET status: @@ -7076,27 +7101,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M43.1668397S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M48.9417717S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:27:08 GMT + - Tue, 13 Jul 2021 14:40:15 GMT expires: - '-1' pragma: @@ -7113,7 +7138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '121' x-powered-by: - ASP.NET status: @@ -7133,18 +7158,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M13.6067438S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M19.4050291S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7153,7 +7178,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:27:40 GMT + - Tue, 13 Jul 2021 14:40:46 GMT expires: - '-1' pragma: @@ -7170,7 +7195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '120' x-powered-by: - ASP.NET status: @@ -7190,18 +7215,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M44.8170218S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M49.9146649S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7210,7 +7235,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:10 GMT + - Tue, 13 Jul 2021 14:41:17 GMT expires: - '-1' pragma: @@ -7227,7 +7252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '119' x-powered-by: - ASP.NET status: @@ -7247,18 +7272,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M15.2680041S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M21.5001177S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7267,7 +7292,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:41 GMT + - Tue, 13 Jul 2021 14:41:47 GMT expires: - '-1' pragma: @@ -7284,7 +7309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '118' x-powered-by: - ASP.NET status: @@ -7304,27 +7329,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M46.0271352S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M51.910316S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:12 GMT + - Tue, 13 Jul 2021 14:42:18 GMT expires: - '-1' pragma: @@ -7341,7 +7366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '117' x-powered-by: - ASP.NET status: @@ -7361,18 +7386,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M16.4768686S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M22.3446861S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7381,7 +7406,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:42 GMT + - Tue, 13 Jul 2021 14:42:48 GMT expires: - '-1' pragma: @@ -7398,7 +7423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '116' x-powered-by: - ASP.NET status: @@ -7418,18 +7443,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M47.1954846S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M52.7492154S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7438,7 +7463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:13 GMT + - Tue, 13 Jul 2021 14:43:19 GMT expires: - '-1' pragma: @@ -7455,7 +7480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '115' x-powered-by: - ASP.NET status: @@ -7475,18 +7500,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M17.6152294S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M23.1885877S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7495,7 +7520,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:43 GMT + - Tue, 13 Jul 2021 14:43:50 GMT expires: - '-1' pragma: @@ -7512,7 +7537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '114' x-powered-by: - ASP.NET status: @@ -7532,18 +7557,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M48.1263361S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M53.6252753S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7552,7 +7577,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:14 GMT + - Tue, 13 Jul 2021 14:44:20 GMT expires: - '-1' pragma: @@ -7569,7 +7594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '113' x-powered-by: - ASP.NET status: @@ -7589,27 +7614,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M18.5047054S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M24.00515S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:44 GMT + - Tue, 13 Jul 2021 14:44:50 GMT expires: - '-1' pragma: @@ -7626,7 +7651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '112' x-powered-by: - ASP.NET status: @@ -7646,18 +7671,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M49.0406843S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M54.5155471S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7666,7 +7691,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:15 GMT + - Tue, 13 Jul 2021 14:45:21 GMT expires: - '-1' pragma: @@ -7683,7 +7708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '112' x-powered-by: - ASP.NET status: @@ -7703,18 +7728,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M19.4631974S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M24.9096906S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7723,7 +7748,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:45 GMT + - Tue, 13 Jul 2021 14:45:51 GMT expires: - '-1' pragma: @@ -7740,7 +7765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '111' x-powered-by: - ASP.NET status: @@ -7760,18 +7785,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M49.8873665S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M55.3066059S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7780,7 +7805,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:33:15 GMT + - Tue, 13 Jul 2021 14:46:21 GMT expires: - '-1' pragma: @@ -7797,7 +7822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '110' x-powered-by: - ASP.NET status: @@ -7817,18 +7842,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M20.3706226S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M25.7769789S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7837,7 +7862,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:33:46 GMT + - Tue, 13 Jul 2021 14:46:52 GMT expires: - '-1' pragma: @@ -7854,7 +7879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '109' x-powered-by: - ASP.NET status: @@ -7874,18 +7899,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M51.2469237S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M56.1820316S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7894,7 +7919,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:34:17 GMT + - Tue, 13 Jul 2021 14:47:22 GMT expires: - '-1' pragma: @@ -7911,7 +7936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '108' x-powered-by: - ASP.NET status: @@ -7931,18 +7956,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M21.8675096S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M26.6599687S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7951,7 +7976,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:34:47 GMT + - Tue, 13 Jul 2021 14:47:53 GMT expires: - '-1' pragma: @@ -7968,7 +7993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '107' x-powered-by: - ASP.NET status: @@ -7988,18 +8013,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M52.3429427S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M57.0744463S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8008,7 +8033,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:35:18 GMT + - Tue, 13 Jul 2021 14:48:23 GMT expires: - '-1' pragma: @@ -8025,7 +8050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '106' x-powered-by: - ASP.NET status: @@ -8045,18 +8070,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M22.824115S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M27.578925S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8065,7 +8090,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:35:48 GMT + - Tue, 13 Jul 2021 14:48:53 GMT expires: - '-1' pragma: @@ -8082,7 +8107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '105' x-powered-by: - ASP.NET status: @@ -8102,18 +8127,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M53.3386447S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M58.0356288S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8122,7 +8147,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:36:19 GMT + - Tue, 13 Jul 2021 14:49:25 GMT expires: - '-1' pragma: @@ -8139,7 +8164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '104' x-powered-by: - ASP.NET status: @@ -8159,27 +8184,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M23.8310694S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M29.148709S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:36:49 GMT + - Tue, 13 Jul 2021 14:49:55 GMT expires: - '-1' pragma: @@ -8196,7 +8221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '103' x-powered-by: - ASP.NET status: @@ -8216,18 +8241,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M54.2633475S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M59.5172572S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8236,7 +8261,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:37:20 GMT + - Tue, 13 Jul 2021 14:50:25 GMT expires: - '-1' pragma: @@ -8253,7 +8278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '102' x-powered-by: - ASP.NET status: @@ -8273,18 +8298,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M24.9335642S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M29.9780757S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8293,7 +8318,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:37:50 GMT + - Tue, 13 Jul 2021 14:50:56 GMT expires: - '-1' pragma: @@ -8310,7 +8335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '101' x-powered-by: - ASP.NET status: @@ -8330,27 +8355,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M55.610161S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M0.632639S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:21 GMT + - Tue, 13 Jul 2021 14:51:27 GMT expires: - '-1' pragma: @@ -8367,7 +8392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '100' x-powered-by: - ASP.NET status: @@ -8387,18 +8412,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M26.0377924S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M31.0187685S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8407,7 +8432,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:51 GMT + - Tue, 13 Jul 2021 14:51:57 GMT expires: - '-1' pragma: @@ -8424,7 +8449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '99' x-powered-by: - ASP.NET status: @@ -8444,18 +8469,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M56.4661821S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M36.0160821S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8464,7 +8489,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:22 GMT + - Tue, 13 Jul 2021 14:53:03 GMT expires: - '-1' pragma: @@ -8481,7 +8506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '98' x-powered-by: - ASP.NET status: @@ -8501,27 +8526,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M26.8702032S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M6.5301987S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:52 GMT + - Tue, 13 Jul 2021 14:53:33 GMT expires: - '-1' pragma: @@ -8538,7 +8563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '97' x-powered-by: - ASP.NET status: @@ -8558,18 +8583,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M57.2568425S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M36.9443533S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8578,7 +8603,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:40:22 GMT + - Tue, 13 Jul 2021 14:54:03 GMT expires: - '-1' pragma: @@ -8595,7 +8620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '96' x-powered-by: - ASP.NET status: @@ -8615,27 +8640,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M27.7463171S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M7.8409549S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:40:53 GMT + - Tue, 13 Jul 2021 14:54:34 GMT expires: - '-1' pragma: @@ -8652,7 +8677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '95' x-powered-by: - ASP.NET status: @@ -8672,18 +8697,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M58.2480059S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M38.2552712S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8692,7 +8717,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:41:23 GMT + - Tue, 13 Jul 2021 14:55:04 GMT expires: - '-1' pragma: @@ -8709,7 +8734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '94' x-powered-by: - ASP.NET status: @@ -8729,27 +8754,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M28.6348079S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M8.7036469S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:41:55 GMT + - Tue, 13 Jul 2021 14:55:35 GMT expires: - '-1' pragma: @@ -8766,7 +8791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '93' x-powered-by: - ASP.NET status: @@ -8786,18 +8811,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M59.5078161S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M39.1185156S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8806,7 +8831,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:42:25 GMT + - Tue, 13 Jul 2021 14:56:06 GMT expires: - '-1' pragma: @@ -8823,7 +8848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '92' x-powered-by: - ASP.NET status: @@ -8843,27 +8868,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M30.2480823S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M9.5955059S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:42:55 GMT + - Tue, 13 Jul 2021 14:56:36 GMT expires: - '-1' pragma: @@ -8880,7 +8905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '91' x-powered-by: - ASP.NET status: @@ -8900,27 +8925,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M0.7301378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M40.0635455S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:43:26 GMT + - Tue, 13 Jul 2021 14:57:06 GMT expires: - '-1' pragma: @@ -8937,7 +8962,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '90' x-powered-by: - ASP.NET status: @@ -8957,18 +8982,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M31.1510204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M10.5139354S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8977,7 +9002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:43:56 GMT + - Tue, 13 Jul 2021 14:57:37 GMT expires: - '-1' pragma: @@ -8994,7 +9019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '89' x-powered-by: - ASP.NET status: @@ -9014,27 +9039,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M1.6938446S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M40.8966348S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:27 GMT + - Tue, 13 Jul 2021 14:58:07 GMT expires: - '-1' pragma: @@ -9051,7 +9076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '88' x-powered-by: - ASP.NET status: @@ -9071,18 +9096,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M32.2375763S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M11.3129744S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9091,7 +9116,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:57 GMT + - Tue, 13 Jul 2021 14:58:38 GMT expires: - '-1' pragma: @@ -9108,7 +9133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '87' x-powered-by: - ASP.NET status: @@ -9128,27 +9153,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M3.1113256S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M41.7577797S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:45:29 GMT + - Tue, 13 Jul 2021 14:59:08 GMT expires: - '-1' pragma: @@ -9165,7 +9190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '86' x-powered-by: - ASP.NET status: @@ -9185,18 +9210,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M33.7876656S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M12.2307239S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9205,7 +9230,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:45:59 GMT + - Tue, 13 Jul 2021 14:59:38 GMT expires: - '-1' pragma: @@ -9222,7 +9247,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '85' x-powered-by: - ASP.NET status: @@ -9242,27 +9267,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M4.2433536S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M42.6976668S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:46:30 GMT + - Tue, 13 Jul 2021 15:00:09 GMT expires: - '-1' pragma: @@ -9279,7 +9304,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '84' x-powered-by: - ASP.NET status: @@ -9299,18 +9324,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M34.6866601S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M13.2060783S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9319,7 +9344,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:00 GMT + - Tue, 13 Jul 2021 15:00:39 GMT expires: - '-1' pragma: @@ -9336,7 +9361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '83' x-powered-by: - ASP.NET status: @@ -9356,18 +9381,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M5.0513222S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M4.6548514S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9376,7 +9401,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:30 GMT + - Tue, 13 Jul 2021 15:01:31 GMT expires: - '-1' pragma: @@ -9393,7 +9418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '82' x-powered-by: - ASP.NET status: @@ -9413,18 +9438,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M35.6067266S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M35.0990499S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9433,7 +9458,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:48:01 GMT + - Tue, 13 Jul 2021 15:02:02 GMT expires: - '-1' pragma: @@ -9450,7 +9475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '81' x-powered-by: - ASP.NET status: @@ -9470,18 +9495,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M5.9969155S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M6.4970263S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9490,7 +9515,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:48:31 GMT + - Tue, 13 Jul 2021 15:02:33 GMT expires: - '-1' pragma: @@ -9507,7 +9532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '80' x-powered-by: - ASP.NET status: @@ -9527,27 +9552,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M36.3567907S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M36.951645S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 14:49:02 GMT + - Tue, 13 Jul 2021 15:03:03 GMT expires: - '-1' pragma: @@ -9564,7 +9589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '79' x-powered-by: - ASP.NET status: @@ -9584,18 +9609,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M6.8459544S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M7.4644742S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9604,7 +9629,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:49:32 GMT + - Tue, 13 Jul 2021 15:03:34 GMT expires: - '-1' pragma: @@ -9621,7 +9646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '78' x-powered-by: - ASP.NET status: @@ -9641,18 +9666,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M37.5693529S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M38.0812665S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9661,7 +9686,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:50:03 GMT + - Tue, 13 Jul 2021 15:04:04 GMT expires: - '-1' pragma: @@ -9678,7 +9703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '77' x-powered-by: - ASP.NET status: @@ -9698,18 +9723,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M7.9788804S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M8.5357287S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9718,7 +9743,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:50:33 GMT + - Tue, 13 Jul 2021 15:04:35 GMT expires: - '-1' pragma: @@ -9735,7 +9760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '76' x-powered-by: - ASP.NET status: @@ -9755,18 +9780,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M38.434376S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M39.206992S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9775,7 +9800,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:51:04 GMT + - Tue, 13 Jul 2021 15:05:05 GMT expires: - '-1' pragma: @@ -9792,7 +9817,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '75' x-powered-by: - ASP.NET status: @@ -9812,27 +9837,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M8.8650671S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M9.614158S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 14:51:34 GMT + - Tue, 13 Jul 2021 15:05:35 GMT expires: - '-1' pragma: @@ -9849,7 +9874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '74' x-powered-by: - ASP.NET status: @@ -9869,27 +9894,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M39.243853S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M40.0851598S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:52:05 GMT + - Tue, 13 Jul 2021 15:06:06 GMT expires: - '-1' pragma: @@ -9906,7 +9931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '73' x-powered-by: - ASP.NET status: @@ -9926,27 +9951,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M9.6563658S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M10.5640158S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 21 Jun 2021 14:52:35 GMT + - Tue, 13 Jul 2021 15:06:36 GMT expires: - '-1' pragma: @@ -9963,7 +9988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '72' x-powered-by: - ASP.NET status: @@ -9983,18 +10008,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M40.2135327S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M41.7920778S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10003,7 +10028,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:53:06 GMT + - Tue, 13 Jul 2021 15:07:08 GMT expires: - '-1' pragma: @@ -10020,7 +10045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '71' x-powered-by: - ASP.NET status: @@ -10040,18 +10065,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M10.6060524S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M12.2325914S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10060,7 +10085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:53:36 GMT + - Tue, 13 Jul 2021 15:07:38 GMT expires: - '-1' pragma: @@ -10077,7 +10102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '70' x-powered-by: - ASP.NET status: @@ -10097,18 +10122,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M41.0680627S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M42.6850707S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T14:27:26.6013929Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10117,7 +10142,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:54:06 GMT + - Tue, 13 Jul 2021 15:08:09 GMT expires: - '-1' pragma: @@ -10134,7 +10159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '69' x-powered-by: - ASP.NET status: @@ -10154,27 +10179,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M11.844797S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1ca0a26b-a8b9-417f-bf98-146d7ee05059","name":"1ca0a26b-a8b9-417f-bf98-146d7ee05059","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M12.3623014S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T14:27:26.6013929Z","endTime":"2021-07-13T15:08:38.9636943Z","activityId":"7022bd1a-e3e6-11eb-8652-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1223' content-type: - application/json date: - - Mon, 21 Jun 2021 14:54:38 GMT + - Tue, 13 Jul 2021 15:08:39 GMT expires: - '-1' pragma: @@ -10191,7 +10216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '68' x-powered-by: - ASP.NET status: @@ -10205,40 +10230,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M42.2214925S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 14:55:08 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10248,7 +10270,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '148' x-powered-by: - ASP.NET status: @@ -10262,40 +10284,39 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M12.6597808S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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/7242104363155","name":"7242104363155","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:27:30.4342406Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '1461' content-type: - application/json date: - - Mon, 21 Jun 2021 14:55:38 GMT + - Tue, 13 Jul 2021 15: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: @@ -10305,7 +10326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '149' x-powered-by: - ASP.NET status: @@ -10319,40 +10340,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M43.074518S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:09 GMT + - Tue, 13 Jul 2021 15: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: @@ -10362,7 +10380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '147' x-powered-by: - ASP.NET status: @@ -10376,40 +10394,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M13.4864509S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1159' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:39 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10419,7 +10433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '149' x-powered-by: - ASP.NET status: @@ -10433,40 +10447,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M44.226748S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:10 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10476,7 +10487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '149' x-powered-by: - ASP.NET status: @@ -10490,40 +10501,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M14.8061206S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1159' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:40 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10533,7 +10540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '149' x-powered-by: - ASP.NET status: @@ -10547,40 +10554,39 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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/7242104363155?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M45.1791919S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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/7242104363155","name":"7242104363155","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:27:30.4342406Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1449' content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:11 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10590,7 +10596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '149' x-powered-by: - ASP.NET status: @@ -10604,40 +10610,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 --restore-to-staging-storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M15.629494S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-13T14%3A19%3A11.7112062Z''\"","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: - - '1158' + - '539' content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:41 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10646,10 +10645,6 @@ interactions: - 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 @@ -10661,40 +10656,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M46.0493936S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '547' content-type: - application/json date: - - Mon, 21 Jun 2021 14:59:11 GMT + - Tue, 13 Jul 2021 15: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: @@ -10704,7 +10695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '149' x-powered-by: - ASP.NET status: @@ -10718,40 +10709,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M16.5234024S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 14:59:42 GMT + - Tue, 13 Jul 2021 15: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: @@ -10761,7 +10749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '149' x-powered-by: - ASP.NET status: @@ -10775,40 +10763,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M46.9797882S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1159' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 15:00:12 GMT + - Tue, 13 Jul 2021 15: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: @@ -10818,7 +10802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '149' x-powered-by: - ASP.NET status: @@ -10832,40 +10816,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M17.4284316S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2363' content-type: - application/json date: - - Mon, 21 Jun 2021 15:00:43 GMT + - Tue, 13 Jul 2021 15: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: @@ -10875,7 +10856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '148' x-powered-by: - ASP.NET status: @@ -10889,40 +10870,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M47.9498751S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1159' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 15:01:13 GMT + - Tue, 13 Jul 2021 15: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: @@ -10932,7 +10909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '149' x-powered-by: - ASP.NET status: @@ -10946,40 +10923,39 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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/7242104363155?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M18.855361S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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/7242104363155","name":"7242104363155","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:27:30.4342406Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1449' content-type: - application/json date: - - Mon, 21 Jun 2021 15:01:44 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -10989,7 +10965,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '149' x-powered-by: - ASP.NET status: @@ -11003,40 +10979,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M49.3158119S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-13T14%3A19%3A11.7112062Z''\"","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: - - '1159' + - '539' content-type: - application/json date: - - Mon, 21 Jun 2021 15:02:15 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -11045,10 +11014,6 @@ interactions: - 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 @@ -11060,40 +11025,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M19.9324195S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '547' content-type: - application/json date: - - Mon, 21 Jun 2021 15:02:45 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -11103,7 +11064,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '149' x-powered-by: - ASP.NET status: @@ -11117,55 +11078,42 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M50.330437S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1158' + - '312' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 15:03:16 GMT + - Tue, 13 Jul 2021 15:10:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -11174,40 +11122,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M20.8219863S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T15:09:13.4237935Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T15:09:13.3300022Z","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: - - '1159' + - '974' content-type: - application/json date: - - Mon, 21 Jun 2021 15:03:47 GMT + - Tue, 13 Jul 2021 15:10:09 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: @@ -11216,70 +11157,67 @@ 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 + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "7242104363155", "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 job wait + - backup restore restore-disks Connection: - keep-alive + Content-Length: + - '851' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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/7242104363155/restore?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M51.3063699S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1159' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 15:04:17 GMT + - Tue, 13 Jul 2021 15:10:09 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/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + 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: @@ -11288,40 +11226,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M21.680185S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 15:04:47 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -11331,7 +11265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '75' x-powered-by: - ASP.NET status: @@ -11345,40 +11279,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M52.1122196S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","status":"Succeeded","startTime":"2021-07-13T15:10:10.0683202Z","endTime":"2021-07-13T15:10:10.0683202Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5a0b2489-bd29-4e21-b913-90491155dd17"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 15:05:17 GMT + - Tue, 13 Jul 2021 15:10: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: @@ -11388,7 +11318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '74' x-powered-by: - ASP.NET status: @@ -11402,33 +11332,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 User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M22.6395114S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1.9105301S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1300' content-type: - application/json date: - - Mon, 21 Jun 2021 15:05:48 GMT + - Tue, 13 Jul 2021 15:10:12 GMT expires: - '-1' pragma: @@ -11445,7 +11375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '68' x-powered-by: - ASP.NET status: @@ -11465,27 +11395,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M53.5512333S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.5157338S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1300' content-type: - application/json date: - - Mon, 21 Jun 2021 15:06:20 GMT + - Tue, 13 Jul 2021 15:10:12 GMT expires: - '-1' pragma: @@ -11502,7 +11432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '148' x-powered-by: - ASP.NET status: @@ -11522,27 +11452,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M24.1239973S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.9224359S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1300' content-type: - application/json date: - - Mon, 21 Jun 2021 15:06:50 GMT + - Tue, 13 Jul 2021 15:10:12 GMT expires: - '-1' pragma: @@ -11559,7 +11489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '147' x-powered-by: - ASP.NET status: @@ -11579,27 +11509,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M54.822346S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33.5332992S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1301' content-type: - application/json date: - - Mon, 21 Jun 2021 15:07:21 GMT + - Tue, 13 Jul 2021 15:10:43 GMT expires: - '-1' pragma: @@ -11616,7 +11546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '146' x-powered-by: - ASP.NET status: @@ -11636,27 +11566,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT50M25.3109056S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M3.9630668S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1302' content-type: - application/json date: - - Mon, 21 Jun 2021 15:07:51 GMT + - Tue, 13 Jul 2021 15:11:13 GMT expires: - '-1' pragma: @@ -11673,7 +11603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '145' x-powered-by: - ASP.NET status: @@ -11693,27 +11623,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT50M55.8484888S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M34.4171386S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1303' content-type: - application/json date: - - Mon, 21 Jun 2021 15:08:21 GMT + - Tue, 13 Jul 2021 15:11:44 GMT expires: - '-1' pragma: @@ -11730,7 +11660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '144' x-powered-by: - ASP.NET status: @@ -11750,27 +11680,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT51M26.2636311S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M5.0211156S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1393' content-type: - application/json date: - - Mon, 21 Jun 2021 15:08:52 GMT + - Tue, 13 Jul 2021 15:12:15 GMT expires: - '-1' pragma: @@ -11787,7 +11718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '143' x-powered-by: - ASP.NET status: @@ -11807,27 +11738,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT51M56.6564892S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M35.5849461S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1394' content-type: - application/json date: - - Mon, 21 Jun 2021 15:09:22 GMT + - Tue, 13 Jul 2021 15:12:45 GMT expires: - '-1' pragma: @@ -11844,7 +11776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '142' x-powered-by: - ASP.NET status: @@ -11864,27 +11796,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT52M27.026389S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M6.2277118S","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 ":"7/13/2021 2:27:30 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:10:10.0683202Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1393' content-type: - application/json date: - - Mon, 21 Jun 2021 15:09:53 GMT + - Tue, 13 Jul 2021 15:13:16 GMT expires: - '-1' pragma: @@ -11901,7 +11834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '141' x-powered-by: - ASP.NET status: @@ -11921,27 +11854,31 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT52M57.4593194S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M6.2464933S","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 ":"7/13/2021 2:27:30 PM","Config Blob Name":"config-clitestvmdl2ii-5a0b2489-bd29-4e21-b913-90491155dd17.json","Config + Blob Container Name":"clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a/config-clitestvmdl2ii-5a0b2489-bd29-4e21-b913-90491155dd17.json","Target + resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a/azuredeploy5a0b2489-bd29-4e21-b913-90491155dd17.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:10:10.0683202Z","endTime":"2021-07-13T15:13:16.3148135Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1963' content-type: - application/json date: - - Mon, 21 Jun 2021 15:10:23 GMT + - Tue, 13 Jul 2021 15:13:46 GMT expires: - '-1' pragma: @@ -11958,7 +11895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '140' x-powered-by: - ASP.NET status: @@ -11972,33 +11909,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT53M27.9904012S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/5a0b2489-bd29-4e21-b913-90491155dd17","name":"5a0b2489-bd29-4e21-b913-90491155dd17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M6.2464933S","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 ":"7/13/2021 2:27:30 PM","Config Blob Name":"config-clitestvmdl2ii-5a0b2489-bd29-4e21-b913-90491155dd17.json","Config + Blob Container Name":"clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a/config-clitestvmdl2ii-5a0b2489-bd29-4e21-b913-90491155dd17.json","Target + resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a/azuredeploy5a0b2489-bd29-4e21-b913-90491155dd17.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:10:10.0683202Z","endTime":"2021-07-13T15:13:16.3148135Z","activityId":"661bbcda-e3ec-11eb-9cdf-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1963' content-type: - application/json date: - - Mon, 21 Jun 2021 15:10:54 GMT + - Tue, 13 Jul 2021 15:14:17 GMT expires: - '-1' pragma: @@ -12015,7 +11956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '149' x-powered-by: - ASP.NET status: @@ -12029,52 +11970,125 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - storage blob exists Connection: - keep-alive ParameterSetName: - - -g -v -n + - --account-name -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT53M58.4873809S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' + string: "{\"value\":[{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shdixRG/providers/Microsoft.Storage/storageAccounts/afstestshdix\",\"name\":\"afstestshdix\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-08T11:48:21.6323267Z\",\"key2\":\"2021-07-08T11:48:21.6323267Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"allowSharedKeyAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-08T11:48:21.6323267Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-08T11:48:21.6323267Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-08T11:48:21.5073343Z\",\"primaryEndpoints\":{\"dfs\":\"https://afstestshdix.dfs.core.windows.net/\",\"web\":\"https://afstestshdix.z13.web.core.windows.net/\",\"blob\":\"https://afstestshdix.blob.core.windows.net/\",\"queue\":\"https://afstestshdix.queue.core.windows.net/\",\"table\":\"https://afstestshdix.table.core.windows.net/\",\"file\":\"https://afstestshdix.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://afstestshdix-secondary.dfs.core.windows.net/\",\"web\":\"https://afstestshdix-secondary.z13.web.core.windows.net/\",\"blob\":\"https://afstestshdix-secondary.blob.core.windows.net/\",\"queue\":\"https://afstestshdix-secondary.queue.core.windows.net/\",\"table\":\"https://afstestshdix-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.Storage/storageAccounts/bcrg1\",\"name\":\"bcrg1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-03T09:51:59.0987473Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-03T09:51:59.0987473Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-03T09:51:58.9893622Z\",\"primaryEndpoints\":{\"dfs\":\"https://bcrg1.dfs.core.windows.net/\",\"web\":\"https://bcrg1.z13.web.core.windows.net/\",\"blob\":\"https://bcrg1.blob.core.windows.net/\",\"queue\":\"https://bcrg1.queue.core.windows.net/\",\"table\":\"https://bcrg1.table.core.windows.net/\",\"file\":\"https://bcrg1.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.Storage/storageAccounts/bcrg2\",\"name\":\"bcrg2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Use\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-03T09:52:57.0362415Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-03T09:52:57.0362415Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-03T09:52:56.9268633Z\",\"primaryEndpoints\":{\"dfs\":\"https://bcrg2.dfs.core.windows.net/\",\"web\":\"https://bcrg2.z13.web.core.windows.net/\",\"blob\":\"https://bcrg2.blob.core.windows.net/\",\"queue\":\"https://bcrg2.queue.core.windows.net/\",\"table\":\"https://bcrg2.table.core.windows.net/\",\"file\":\"https://bcrg2.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://bcrg2-secondary.dfs.core.windows.net/\",\"web\":\"https://bcrg2-secondary.z13.web.core.windows.net/\",\"blob\":\"https://bcrg2-secondary.blob.core.windows.net/\",\"queue\":\"https://bcrg2-secondary.queue.core.windows.net/\",\"table\":\"https://bcrg2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcemoverg/providers/Microsoft.Storage/storageAccounts/madhudestorageaccount\",\"name\":\"madhudestorageaccount\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-11T06:15:39.0092123Z\",\"key2\":\"2021-06-11T06:15:39.0092123Z\"},\"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-06-11T06:15:39.0092123Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-11T06:15:39.0092123Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-11T06:15:38.8998173Z\",\"primaryEndpoints\":{\"dfs\":\"https://madhudestorageaccount.dfs.core.windows.net/\",\"web\":\"https://madhudestorageaccount.z13.web.core.windows.net/\",\"blob\":\"https://madhudestorageaccount.blob.core.windows.net/\",\"queue\":\"https://madhudestorageaccount.queue.core.windows.net/\",\"table\":\"https://madhudestorageaccount.table.core.windows.net/\",\"file\":\"https://madhudestorageaccount.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://madhudestorageaccount-secondary.dfs.core.windows.net/\",\"web\":\"https://madhudestorageaccount-secondary.z13.web.core.windows.net/\",\"blob\":\"https://madhudestorageaccount-secondary.blob.core.windows.net/\",\"queue\":\"https://madhudestorageaccount-secondary.queue.core.windows.net/\",\"table\":\"https://madhudestorageaccount-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/objectreplicationrg/providers/Microsoft.Storage/storageAccounts/objrepsrc\",\"name\":\"objrepsrc\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-02T06:05:03.1567990Z\",\"key2\":\"2021-07-02T06:05:03.1567990Z\"},\"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-07-02T06:05:03.1567990Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-02T06:05:03.1567990Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-02T06:05:03.0630482Z\",\"primaryEndpoints\":{\"dfs\":\"https://objrepsrc.dfs.core.windows.net/\",\"web\":\"https://objrepsrc.z13.web.core.windows.net/\",\"blob\":\"https://objrepsrc.blob.core.windows.net/\",\"queue\":\"https://objrepsrc.queue.core.windows.net/\",\"table\":\"https://objrepsrc.table.core.windows.net/\",\"file\":\"https://objrepsrc.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://objrepsrc-secondary.dfs.core.windows.net/\",\"web\":\"https://objrepsrc-secondary.z13.web.core.windows.net/\",\"blob\":\"https://objrepsrc-secondary.blob.core.windows.net/\",\"queue\":\"https://objrepsrc-secondary.queue.core.windows.net/\",\"table\":\"https://objrepsrc-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.Storage/storageAccounts/prnookalraf\",\"name\":\"prnookalraf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\" + Yes\",\"Purpose\":\"runners\",\" Owner\":\"prnookal\",\"DeleteBy\":\"05-2023\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-02-25T14:31:48.9405341Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T14:31:48.9405341Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T14:31:48.8624390Z\",\"primaryEndpoints\":{\"dfs\":\"https://prnookalraf.dfs.core.windows.net/\",\"web\":\"https://prnookalraf.z13.web.core.windows.net/\",\"blob\":\"https://prnookalraf.blob.core.windows.net/\",\"queue\":\"https://prnookalraf.queue.core.windows.net/\",\"table\":\"https://prnookalraf.table.core.windows.net/\",\"file\":\"https://prnookalraf.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://prnookalraf-secondary.dfs.core.windows.net/\",\"web\":\"https://prnookalraf-secondary.z13.web.core.windows.net/\",\"blob\":\"https://prnookalraf-secondary.blob.core.windows.net/\",\"queue\":\"https://prnookalraf-secondary.queue.core.windows.net/\",\"table\":\"https://prnookalraf-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.Storage/storageAccounts/prnookaltest\",\"name\":\"prnookaltest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"isMABUsed\":\"Yes\",\"Purpose\":\" + Testing\",\" Owner\":\"prnookal@microsoft.com\",\"DeletBy\":\"12-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-16T11:30:06.2605953Z\",\"key2\":\"2021-03-16T11:30:06.2605953Z\"},\"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-03-16T11:30:06.2605953Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-16T11:30:06.2605953Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-16T11:30:06.1512596Z\",\"primaryEndpoints\":{\"dfs\":\"https://prnookaltest.dfs.core.windows.net/\",\"web\":\"https://prnookaltest.z13.web.core.windows.net/\",\"blob\":\"https://prnookaltest.blob.core.windows.net/\",\"queue\":\"https://prnookaltest.queue.core.windows.net/\",\"table\":\"https://prnookaltest.table.core.windows.net/\",\"file\":\"https://prnookaltest.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://prnookaltest-secondary.dfs.core.windows.net/\",\"web\":\"https://prnookaltest-secondary.z13.web.core.windows.net/\",\"blob\":\"https://prnookaltest-secondary.blob.core.windows.net/\",\"queue\":\"https://prnookaltest-secondary.queue.core.windows.net/\",\"table\":\"https://prnookaltest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.Storage/storageAccounts/restorestac\",\"name\":\"restorestac\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\" + Owner\":\"prnookal@microsoft.com\",\"MAB Used\":\" yes\",\"Purpose\":\"\_Testing\",\"DeleteBy\":\"01-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-18T06:35:49.5838882Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-18T06:35:49.5838882Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-18T06:35:49.4901151Z\",\"primaryEndpoints\":{\"dfs\":\"https://restorestac.dfs.core.windows.net/\",\"web\":\"https://restorestac.z13.web.core.windows.net/\",\"blob\":\"https://restorestac.blob.core.windows.net/\",\"queue\":\"https://restorestac.queue.core.windows.net/\",\"table\":\"https://restorestac.table.core.windows.net/\",\"file\":\"https://restorestac.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate\",\"name\":\"sakaararmtemplate\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-22T11:42:15.8256631Z\",\"key2\":\"2021-04-22T11:42:15.8256631Z\"},\"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-04-22T11:42:15.8256631Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-22T11:42:15.8256631Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-22T11:42:15.5287643Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate2\",\"name\":\"sakaararmtemplate2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T09:11:55.6137405Z\",\"key2\":\"2021-05-04T09:11:55.6137405Z\"},\"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-05-04T09:11:55.6137405Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T09:11:55.6137405Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T09:11:55.5043186Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate2.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate2.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate2.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate2.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate2.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate2.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate3\",\"name\":\"sakaararmtemplate3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T09:16:34.4734612Z\",\"key2\":\"2021-05-04T09:16:34.4734612Z\"},\"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-05-04T09:16:34.4734612Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T09:16:34.4734612Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T09:16:34.3484656Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate3.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate3.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate3.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate3.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate3.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate3.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"identity\":{\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sakaarTestManage\":{\"principalId\":\"a46c3722-15d5-42fa-a5bd-f69a1227381f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"clientId\":\"0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"identityUrl\":\"https://control-eastus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate5/credentials/v2/userassigned?arpid=0ca73278-5b7d-45dd-9fc3-5b85e2df9aeb&uaid=0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"certRenewAfter\":\"2021-06-19T07:40:00Z\"}},\"type\":\"UserAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate5\",\"name\":\"sakaararmtemplate5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T09:26:38.0108632Z\",\"key2\":\"2021-05-04T09:26:38.0108632Z\"},\"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-05-04T09:26:38.0108632Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T09:26:38.0108632Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T09:26:37.8939984Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate5.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate5.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate5.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate5.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate5.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate5.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"identity\":{\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sakaarTestManage\":{\"principalId\":\"a46c3722-15d5-42fa-a5bd-f69a1227381f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"clientId\":\"0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"identityUrl\":\"https://control-eastus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate6/credentials/v2/userassigned?arpid=5af0fbaf-e0f6-4fba-b70d-e6b3abfeadd9&uaid=0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"certRenewAfter\":\"2021-06-19T07:40:00Z\"}},\"type\":\"UserAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate6\",\"name\":\"sakaararmtemplate6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T09:32:10.9405598Z\",\"key2\":\"2021-05-04T09:32:10.9405598Z\"},\"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-05-04T09:32:10.9405598Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T09:32:10.9405598Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T09:32:10.8468201Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate6.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate6.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate6.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate6.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate6.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate6.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"identity\":{\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sakaarTestManage\":{\"principalId\":\"a46c3722-15d5-42fa-a5bd-f69a1227381f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"clientId\":\"0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"identityUrl\":\"https://control-eastus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate7/credentials/v2/userassigned?arpid=cd455768-68b3-44b5-9e46-e22ad5f42b91&uaid=0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"certRenewAfter\":\"2021-06-19T07:40:00Z\"}},\"type\":\"UserAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate7\",\"name\":\"sakaararmtemplate7\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T12:29:54.4178956Z\",\"key2\":\"2021-05-04T12:29:54.4178956Z\"},\"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-05-04T12:29:54.4178956Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T12:29:54.4178956Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T12:29:54.2929095Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate7.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate7.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate7.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate7.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate7.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate7.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"identity\":{\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sakaarTestManage\":{\"principalId\":\"a46c3722-15d5-42fa-a5bd-f69a1227381f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"clientId\":\"0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"identityUrl\":\"https://control-eastus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate8/credentials/v2/userassigned?arpid=4e7ab501-4cf7-43a5-8be4-5ec4d740508d&uaid=0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"certRenewAfter\":\"2021-06-19T07:40:00Z\"}},\"type\":\"UserAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate8\",\"name\":\"sakaararmtemplate8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T12:33:35.0114478Z\",\"key2\":\"2021-05-04T12:33:35.0114478Z\"},\"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-05-04T12:33:35.0114478Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T12:33:35.0114478Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T12:33:34.9020764Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate8.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate8.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate8.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate8.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate8.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate8.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"identity\":{\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sakaarTestManage\":{\"principalId\":\"a46c3722-15d5-42fa-a5bd-f69a1227381f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"clientId\":\"0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"identityUrl\":\"https://control-eastus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate9/credentials/v2/userassigned?arpid=ac02b51a-b2c1-4382-a50f-9b6a5b530be2&uaid=0cee59bf-4911-4b97-8bcb-a2efc61da04b\",\"certRenewAfter\":\"2021-06-19T07:40:00Z\"}},\"type\":\"UserAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/sakaararmtemplate9\",\"name\":\"sakaararmtemplate9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"\",\"isMABUsed \":\"Yes\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-04T12:46:45.6043470Z\",\"key2\":\"2021-05-04T12:46:45.6043470Z\"},\"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-05-04T12:46:45.6043470Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-04T12:46:45.6043470Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-04T12:46:45.4637404Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaararmtemplate9.dfs.core.windows.net/\",\"web\":\"https://sakaararmtemplate9.z13.web.core.windows.net/\",\"blob\":\"https://sakaararmtemplate9.blob.core.windows.net/\",\"queue\":\"https://sakaararmtemplate9.queue.core.windows.net/\",\"table\":\"https://sakaararmtemplate9.table.core.windows.net/\",\"file\":\"https://sakaararmtemplate9.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/swatidpprg/providers/Microsoft.Storage/storageAccounts/sqlvaeogjzsemo6syc\",\"name\":\"sqlvaeogjzsemo6syc\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-31T00:27:40.6695274Z\",\"key2\":\"2021-05-31T00:27:40.6695274Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-31T00:27:40.6695274Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-31T00:27:40.6695274Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-31T00:27:40.5601523Z\",\"primaryEndpoints\":{\"dfs\":\"https://sqlvaeogjzsemo6syc.dfs.core.windows.net/\",\"web\":\"https://sqlvaeogjzsemo6syc.z13.web.core.windows.net/\",\"blob\":\"https://sqlvaeogjzsemo6syc.blob.core.windows.net/\",\"queue\":\"https://sqlvaeogjzsemo6syc.queue.core.windows.net/\",\"table\":\"https://sqlvaeogjzsemo6syc.table.core.windows.net/\",\"file\":\"https://sqlvaeogjzsemo6syc.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.Storage/storageAccounts/storegt6g77dabzoxq\",\"name\":\"storegt6g77dabzoxq\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-17T05:58:27.0908684Z\",\"key2\":\"2021-03-17T05:58:27.0908684Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T05:58:27.0908684Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T05:58:27.0908684Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-17T05:58:27.0127319Z\",\"primaryEndpoints\":{\"dfs\":\"https://storegt6g77dabzoxq.dfs.core.windows.net/\",\"web\":\"https://storegt6g77dabzoxq.z13.web.core.windows.net/\",\"blob\":\"https://storegt6g77dabzoxq.blob.core.windows.net/\",\"queue\":\"https://storegt6g77dabzoxq.queue.core.windows.net/\",\"table\":\"https://storegt6g77dabzoxq.table.core.windows.net/\",\"file\":\"https://storegt6g77dabzoxq.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://storegt6g77dabzoxq-secondary.dfs.core.windows.net/\",\"web\":\"https://storegt6g77dabzoxq-secondary.z13.web.core.windows.net/\",\"blob\":\"https://storegt6g77dabzoxq-secondary.blob.core.windows.net/\",\"queue\":\"https://storegt6g77dabzoxq-secondary.queue.core.windows.net/\",\"table\":\"https://storegt6g77dabzoxq-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.Storage/storageAccounts/storegt6g77dabzoxqd\",\"name\":\"storegt6g77dabzoxqd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-17T06:02:30.1995766Z\",\"key2\":\"2021-03-17T06:02:30.1995766Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T06:02:30.1995766Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T06:02:30.1995766Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-17T06:02:30.1058300Z\",\"primaryEndpoints\":{\"dfs\":\"https://storegt6g77dabzoxqd.dfs.core.windows.net/\",\"web\":\"https://storegt6g77dabzoxqd.z13.web.core.windows.net/\",\"blob\":\"https://storegt6g77dabzoxqd.blob.core.windows.net/\",\"queue\":\"https://storegt6g77dabzoxqd.queue.core.windows.net/\",\"table\":\"https://storegt6g77dabzoxqd.table.core.windows.net/\",\"file\":\"https://storegt6g77dabzoxqd.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://storegt6g77dabzoxqd-secondary.dfs.core.windows.net/\",\"web\":\"https://storegt6g77dabzoxqd-secondary.z13.web.core.windows.net/\",\"blob\":\"https://storegt6g77dabzoxqd-secondary.blob.core.windows.net/\",\"queue\":\"https://storegt6g77dabzoxqd-secondary.queue.core.windows.net/\",\"table\":\"https://storegt6g77dabzoxqd-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Storage/storageAccounts/teeclientproxytest\",\"name\":\"teeclientproxytest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"Delete + By\":\"08-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-17T16:00:56.2471120Z\",\"key2\":\"2021-05-17T16:00:56.2471120Z\"},\"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-05-17T16:00:56.2627009Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-17T16:00:56.2627009Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Cool\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-17T16:00:56.1533278Z\",\"primaryEndpoints\":{\"dfs\":\"https://teeclientproxytest.dfs.core.windows.net/\",\"web\":\"https://teeclientproxytest.z13.web.core.windows.net/\",\"blob\":\"https://teeclientproxytest.blob.core.windows.net/\",\"queue\":\"https://teeclientproxytest.queue.core.windows.net/\",\"table\":\"https://teeclientproxytest.table.core.windows.net/\",\"file\":\"https://teeclientproxytest.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskTestRG/providers/Microsoft.Storage/storageAccounts/vxleuspod01otds1\",\"name\":\"vxleuspod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-30T10:50:40.8009082Z\",\"key2\":\"2021-06-30T10:50:40.8009082Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T10:50:40.8009082Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T10:50:40.8009082Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-30T10:50:40.6759345Z\",\"primaryEndpoints\":{\"dfs\":\"https://vxleuspod01otds1.dfs.core.windows.net/\",\"web\":\"https://vxleuspod01otds1.z13.web.core.windows.net/\",\"blob\":\"https://vxleuspod01otds1.blob.core.windows.net/\",\"queue\":\"https://vxleuspod01otds1.queue.core.windows.net/\",\"table\":\"https://vxleuspod01otds1.table.core.windows.net/\",\"file\":\"https://vxleuspod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://vxleuspod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://vxleuspod01otds1-secondary.z13.web.core.windows.net/\",\"blob\":\"https://vxleuspod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://vxleuspod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://vxleuspod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demosnapshotrg/providers/Microsoft.Storage/storageAccounts/8q6eus2pod01otds1\",\"name\":\"8q6eus2pod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-27T06:52:17.9941430Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-27T06:52:17.9941430Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-27T06:52:17.9160053Z\",\"primaryEndpoints\":{\"dfs\":\"https://8q6eus2pod01otds1.dfs.core.windows.net/\",\"web\":\"https://8q6eus2pod01otds1.z20.web.core.windows.net/\",\"blob\":\"https://8q6eus2pod01otds1.blob.core.windows.net/\",\"queue\":\"https://8q6eus2pod01otds1.queue.core.windows.net/\",\"table\":\"https://8q6eus2pod01otds1.table.core.windows.net/\",\"file\":\"https://8q6eus2pod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://8q6eus2pod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://8q6eus2pod01otds1-secondary.z20.web.core.windows.net/\",\"blob\":\"https://8q6eus2pod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://8q6eus2pod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://8q6eus2pod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ag-west-us-rg/providers/Microsoft.Storage/storageAccounts/6zkwuspod01otds1\",\"name\":\"6zkwuspod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-15T14:52:11.0359664Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-15T14:52:11.0359664Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-15T14:52:10.9578396Z\",\"primaryEndpoints\":{\"dfs\":\"https://6zkwuspod01otds1.dfs.core.windows.net/\",\"web\":\"https://6zkwuspod01otds1.z22.web.core.windows.net/\",\"blob\":\"https://6zkwuspod01otds1.blob.core.windows.net/\",\"queue\":\"https://6zkwuspod01otds1.queue.core.windows.net/\",\"table\":\"https://6zkwuspod01otds1.table.core.windows.net/\",\"file\":\"https://6zkwuspod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://6zkwuspod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://6zkwuspod01otds1-secondary.z22.web.core.windows.net/\",\"blob\":\"https://6zkwuspod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://6zkwuspod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://6zkwuspod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffe821234a9\",\"name\":\"cs410037ffe821234a9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-06T01:16:10.5828358Z\",\"key2\":\"2021-04-06T01:16:10.5828358Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-06T01:16:10.5828358Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-06T01:16:10.5828358Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-06T01:16:10.5203129Z\",\"primaryEndpoints\":{\"dfs\":\"https://cs410037ffe821234a9.dfs.core.windows.net/\",\"web\":\"https://cs410037ffe821234a9.z22.web.core.windows.net/\",\"blob\":\"https://cs410037ffe821234a9.blob.core.windows.net/\",\"queue\":\"https://cs410037ffe821234a9.queue.core.windows.net/\",\"table\":\"https://cs410037ffe821234a9.table.core.windows.net/\",\"file\":\"https://cs410037ffe821234a9.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Storage/storageAccounts/kosinghacrrtestdiag\",\"name\":\"kosinghacrrtestdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"Owner\":\"kosingha\",\"MABUsed\":\" + Yes\",\"IsAutoShutdown\":\"No\",\"DeleteBy\":\"12-2020\",\"Purpose\":\"Test + CRR\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-18T08:21:51.4363060Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-18T08:21:51.4363060Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-18T08:21:51.3581903Z\",\"primaryEndpoints\":{\"blob\":\"https://kosinghacrrtestdiag.blob.core.windows.net/\",\"queue\":\"https://kosinghacrrtestdiag.queue.core.windows.net/\",\"table\":\"https://kosinghacrrtestdiag.table.core.windows.net/\",\"file\":\"https://kosinghacrrtestdiag.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/micurciorgwestus/providers/Microsoft.Storage/storageAccounts/micurciosawestus\",\"name\":\"micurciosawestus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-21T22:11:44.0201317Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-21T22:11:44.0201317Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-21T22:11:43.9107837Z\",\"primaryEndpoints\":{\"dfs\":\"https://micurciosawestus.dfs.core.windows.net/\",\"web\":\"https://micurciosawestus.z22.web.core.windows.net/\",\"blob\":\"https://micurciosawestus.blob.core.windows.net/\",\"queue\":\"https://micurciosawestus.queue.core.windows.net/\",\"table\":\"https://micurciosawestus.table.core.windows.net/\",\"file\":\"https://micurciosawestus.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://micurciosawestus-secondary.dfs.core.windows.net/\",\"web\":\"https://micurciosawestus-secondary.z22.web.core.windows.net/\",\"blob\":\"https://micurciosawestus-secondary.blob.core.windows.net/\",\"queue\":\"https://micurciosawestus-secondary.queue.core.windows.net/\",\"table\":\"https://micurciosawestus-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prambtest/providers/Microsoft.Storage/storageAccounts/msirestoretestwus\",\"name\":\"msirestoretestwus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-02T04:36:26.1329012Z\",\"key2\":\"2021-07-02T04:36:26.1329012Z\"},\"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-07-02T04:36:26.1329012Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-02T04:36:26.1329012Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-02T04:36:26.0547343Z\",\"primaryEndpoints\":{\"dfs\":\"https://msirestoretestwus.dfs.core.windows.net/\",\"web\":\"https://msirestoretestwus.z22.web.core.windows.net/\",\"blob\":\"https://msirestoretestwus.blob.core.windows.net/\",\"queue\":\"https://msirestoretestwus.queue.core.windows.net/\",\"table\":\"https://msirestoretestwus.table.core.windows.net/\",\"file\":\"https://msirestoretestwus.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://msirestoretestwus-secondary.dfs.core.windows.net/\",\"web\":\"https://msirestoretestwus-secondary.z22.web.core.windows.net/\",\"blob\":\"https://msirestoretestwus-secondary.blob.core.windows.net/\",\"queue\":\"https://msirestoretestwus-secondary.queue.core.windows.net/\",\"table\":\"https://msirestoretestwus-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ProtScalePerfAI/providers/Microsoft.Storage/storageAccounts/protscaleperfsa\",\"name\":\"protscaleperfsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-25T02:24:38.7682649Z\",\"key2\":\"2021-06-25T02:24:38.7682649Z\"},\"privateEndpointConnections\":[],\"isHnsEnabled\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-25T02:24:38.7682649Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-25T02:24:38.7682649Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-25T02:24:38.6745231Z\",\"primaryEndpoints\":{\"dfs\":\"https://protscaleperfsa.dfs.core.windows.net/\",\"web\":\"https://protscaleperfsa.z22.web.core.windows.net/\",\"blob\":\"https://protscaleperfsa.blob.core.windows.net/\",\"queue\":\"https://protscaleperfsa.queue.core.windows.net/\",\"table\":\"https://protscaleperfsa.table.core.windows.net/\",\"file\":\"https://protscaleperfsa.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/w8mwuspod01otds1\",\"name\":\"w8mwuspod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-28T04:02:42.3358071Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-28T04:02:42.3358071Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-28T04:02:42.2576673Z\",\"primaryEndpoints\":{\"dfs\":\"https://w8mwuspod01otds1.dfs.core.windows.net/\",\"web\":\"https://w8mwuspod01otds1.z22.web.core.windows.net/\",\"blob\":\"https://w8mwuspod01otds1.blob.core.windows.net/\",\"queue\":\"https://w8mwuspod01otds1.queue.core.windows.net/\",\"table\":\"https://w8mwuspod01otds1.table.core.windows.net/\",\"file\":\"https://w8mwuspod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://w8mwuspod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://w8mwuspod01otds1-secondary.z22.web.core.windows.net/\",\"blob\":\"https://w8mwuspod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://w8mwuspod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://w8mwuspod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DemoRG/providers/Microsoft.Storage/storageAccounts/sqlvatckkwmj6dz3wi\",\"name\":\"sqlvatckkwmj6dz3wi\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-16T05:25:15.8239726Z\",\"key2\":\"2021-03-16T05:25:15.8239726Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-16T05:25:15.8239726Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-16T05:25:15.8239726Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-16T05:25:15.7301992Z\",\"primaryEndpoints\":{\"dfs\":\"https://sqlvatckkwmj6dz3wi.dfs.core.windows.net/\",\"web\":\"https://sqlvatckkwmj6dz3wi.z6.web.core.windows.net/\",\"blob\":\"https://sqlvatckkwmj6dz3wi.blob.core.windows.net/\",\"queue\":\"https://sqlvatckkwmj6dz3wi.queue.core.windows.net/\",\"table\":\"https://sqlvatckkwmj6dz3wi.table.core.windows.net/\",\"file\":\"https://sqlvatckkwmj6dz3wi.file.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"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\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T15:09:39.6384379Z\",\"key2\":\"2021-07-13T15:09:39.6384379Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T15:09:39.6541112Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T15:09:39.6541112Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T15:09:39.5759362Z\",\"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_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/fzyeapod01otds1\",\"name\":\"fzyeapod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-28T04:45:41.6307917Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-28T04:45:41.6307917Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-28T04:45:41.5682611Z\",\"primaryEndpoints\":{\"dfs\":\"https://fzyeapod01otds1.dfs.core.windows.net/\",\"web\":\"https://fzyeapod01otds1.z7.web.core.windows.net/\",\"blob\":\"https://fzyeapod01otds1.blob.core.windows.net/\",\"queue\":\"https://fzyeapod01otds1.queue.core.windows.net/\",\"table\":\"https://fzyeapod01otds1.table.core.windows.net/\",\"file\":\"https://fzyeapod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://fzyeapod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://fzyeapod01otds1-secondary.z7.web.core.windows.net/\",\"blob\":\"https://fzyeapod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://fzyeapod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://fzyeapod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1\",\"name\":\"1s8seacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-15T11:31:23.3061507Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-15T11:31:23.3061507Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-15T11:31:23.2280005Z\",\"primaryEndpoints\":{\"dfs\":\"https://1s8seacan01otds1.dfs.core.windows.net/\",\"web\":\"https://1s8seacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://1s8seacan01otds1.blob.core.windows.net/\",\"queue\":\"https://1s8seacan01otds1.queue.core.windows.net/\",\"table\":\"https://1s8seacan01otds1.table.core.windows.net/\",\"file\":\"https://1s8seacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://1s8seacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://1s8seacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://1s8seacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://1s8seacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://1s8seacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1\",\"name\":\"6w3seacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-04T11:32:27.1898534Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-04T11:32:27.1898534Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-04T11:32:27.0961117Z\",\"primaryEndpoints\":{\"dfs\":\"https://6w3seacan01otds1.dfs.core.windows.net/\",\"web\":\"https://6w3seacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://6w3seacan01otds1.blob.core.windows.net/\",\"queue\":\"https://6w3seacan01otds1.queue.core.windows.net/\",\"table\":\"https://6w3seacan01otds1.table.core.windows.net/\",\"file\":\"https://6w3seacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://6w3seacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://6w3seacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://6w3seacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://6w3seacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://6w3seacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1\",\"name\":\"7k3seacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-23T10:11:37.3833123Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-23T10:11:37.3833123Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-23T10:11:37.3052108Z\",\"primaryEndpoints\":{\"dfs\":\"https://7k3seacan01otds1.dfs.core.windows.net/\",\"web\":\"https://7k3seacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://7k3seacan01otds1.blob.core.windows.net/\",\"queue\":\"https://7k3seacan01otds1.queue.core.windows.net/\",\"table\":\"https://7k3seacan01otds1.table.core.windows.net/\",\"file\":\"https://7k3seacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://7k3seacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://7k3seacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://7k3seacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://7k3seacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://7k3seacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1\",\"name\":\"8zhseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-18T09:39:58.7582915Z\",\"key2\":\"2021-05-18T09:39:58.7582915Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-18T09:39:58.7582915Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-18T09:39:58.7582915Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-18T09:39:58.6801716Z\",\"primaryEndpoints\":{\"dfs\":\"https://8zhseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://8zhseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://8zhseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://8zhseacan01otds1.queue.core.windows.net/\",\"table\":\"https://8zhseacan01otds1.table.core.windows.net/\",\"file\":\"https://8zhseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://8zhseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://8zhseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://8zhseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://8zhseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://8zhseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1\",\"name\":\"9ocseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-22T09:44:14.5901798Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-22T09:44:14.5901798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-22T09:44:14.5120855Z\",\"primaryEndpoints\":{\"dfs\":\"https://9ocseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://9ocseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://9ocseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://9ocseacan01otds1.queue.core.windows.net/\",\"table\":\"https://9ocseacan01otds1.table.core.windows.net/\",\"file\":\"https://9ocseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://9ocseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://9ocseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://9ocseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://9ocseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://9ocseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-rg/providers/Microsoft.Storage/storageAccounts/akneemasa\",\"name\":\"akneemasa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"akneema\",\"DeleteBy\":\"12-9999\",\"MabUsed\":\"Yes\",\"Purpose\":\"Testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-15T15:51:08.5116286Z\",\"key2\":\"2021-06-15T15:51:08.5116286Z\"},\"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-06-15T15:51:08.5116286Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-15T15:51:08.5116286Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-15T15:51:08.4334896Z\",\"primaryEndpoints\":{\"dfs\":\"https://akneemasa.dfs.core.windows.net/\",\"web\":\"https://akneemasa.z23.web.core.windows.net/\",\"blob\":\"https://akneemasa.blob.core.windows.net/\",\"queue\":\"https://akneemasa.queue.core.windows.net/\",\"table\":\"https://akneemasa.table.core.windows.net/\",\"file\":\"https://akneemasa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://akneemasa-secondary.dfs.core.windows.net/\",\"web\":\"https://akneemasa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://akneemasa-secondary.blob.core.windows.net/\",\"queue\":\"https://akneemasa-secondary.queue.core.windows.net/\",\"table\":\"https://akneemasa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1\",\"name\":\"brzseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-21T08:20:20.3748290Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-21T08:20:20.3748290Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-21T08:20:20.3279537Z\",\"primaryEndpoints\":{\"dfs\":\"https://brzseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://brzseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://brzseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://brzseacan01otds1.queue.core.windows.net/\",\"table\":\"https://brzseacan01otds1.table.core.windows.net/\",\"file\":\"https://brzseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://brzseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://brzseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://brzseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://brzseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://brzseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtmrta7e2n/providers/Microsoft.Storage/storageAccounts/clitest4h2h2eksmqysujgjt\",\"name\":\"clitest4h2h2eksmqysujgjt\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T08:07:37.7779546Z\",\"key2\":\"2021-07-13T08:07:37.7779546Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:07:37.7779546Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:07:37.7779546Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T08:07:37.7154508Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest4h2h2eksmqysujgjt.blob.core.windows.net/\",\"queue\":\"https://clitest4h2h2eksmqysujgjt.queue.core.windows.net/\",\"table\":\"https://clitest4h2h2eksmqysujgjt.table.core.windows.net/\",\"file\":\"https://clitest4h2h2eksmqysujgjt.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.rgtb6fpqzldd/providers/Microsoft.Storage/storageAccounts/clitest6m4jkscky75oijs7h\",\"name\":\"clitest6m4jkscky75oijs7h\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-15T05:59:56.5518004Z\",\"key2\":\"2021-06-15T05:59:56.5518004Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-15T05:59:56.5518004Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-15T05:59:56.5518004Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-15T05:59:56.4736778Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest6m4jkscky75oijs7h.blob.core.windows.net/\",\"queue\":\"https://clitest6m4jkscky75oijs7h.queue.core.windows.net/\",\"table\":\"https://clitest6m4jkscky75oijs7h.table.core.windows.net/\",\"file\":\"https://clitest6m4jkscky75oijs7h.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.rghempizrszj/providers/Microsoft.Storage/storageAccounts/clitest75nlu7toascbktmwv\",\"name\":\"clitest75nlu7toascbktmwv\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T08:06:00.1353385Z\",\"key2\":\"2021-07-13T08:06:00.1353385Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:06:00.1353385Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:06:00.1353385Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T08:06:00.0572112Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest75nlu7toascbktmwv.blob.core.windows.net/\",\"queue\":\"https://clitest75nlu7toascbktmwv.queue.core.windows.net/\",\"table\":\"https://clitest75nlu7toascbktmwv.table.core.windows.net/\",\"file\":\"https://clitest75nlu7toascbktmwv.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.rg6om5csm56bhk6tf3sgsokiofllsenlp5t7od37rfwb5zjsh3fz2mmy7vkuhr6uza5/providers/Microsoft.Storage/storageAccounts/clitestc3jk5gpgyohhkko7x\",\"name\":\"clitestc3jk5gpgyohhkko7x\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T14:51:41.3944999Z\",\"key2\":\"2021-07-13T14:51:41.3944999Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T14:51:41.3944999Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T14:51:41.3944999Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T14:51:41.3163767Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestc3jk5gpgyohhkko7x.blob.core.windows.net/\",\"queue\":\"https://clitestc3jk5gpgyohhkko7x.queue.core.windows.net/\",\"table\":\"https://clitestc3jk5gpgyohhkko7x.table.core.windows.net/\",\"file\":\"https://clitestc3jk5gpgyohhkko7x.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.rg34dafqc6b6eddmk3pmony3nsvsxtgecpvumxcyxuftdm7ns4zytljjnbplnj74s7t/providers/Microsoft.Storage/storageAccounts/clitestmuryybtlrspyn4jxe\",\"name\":\"clitestmuryybtlrspyn4jxe\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T08:02:47.5855614Z\",\"key2\":\"2021-07-13T08:02:47.5855614Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:02:47.5855614Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:02:47.5855614Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T08:02:47.4918199Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestmuryybtlrspyn4jxe.blob.core.windows.net/\",\"queue\":\"https://clitestmuryybtlrspyn4jxe.queue.core.windows.net/\",\"table\":\"https://clitestmuryybtlrspyn4jxe.table.core.windows.net/\",\"file\":\"https://clitestmuryybtlrspyn4jxe.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.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6\",\"name\":\"clitestn24npze2xdgmbp7u6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-17T06:31:23.1200078Z\",\"key2\":\"2021-06-17T06:31:23.1200078Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-17T06:31:23.1200078Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-17T06:31:23.1200078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-17T06:31:23.0262842Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestn24npze2xdgmbp7u6.blob.core.windows.net/\",\"queue\":\"https://clitestn24npze2xdgmbp7u6.queue.core.windows.net/\",\"table\":\"https://clitestn24npze2xdgmbp7u6.table.core.windows.net/\",\"file\":\"https://clitestn24npze2xdgmbp7u6.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.rg3d7kl2qk63/providers/Microsoft.Storage/storageAccounts/cliteststlyhak4h5y7trjbv\",\"name\":\"cliteststlyhak4h5y7trjbv\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T08:04:17.2121370Z\",\"key2\":\"2021-07-13T08:04:17.2121370Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:04:17.2121370Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T08:04:17.2121370Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T08:04:17.1183827Z\",\"primaryEndpoints\":{\"blob\":\"https://cliteststlyhak4h5y7trjbv.blob.core.windows.net/\",\"queue\":\"https://cliteststlyhak4h5y7trjbv.queue.core.windows.net/\",\"table\":\"https://cliteststlyhak4h5y7trjbv.table.core.windows.net/\",\"file\":\"https://cliteststlyhak4h5y7trjbv.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\":{\"keyCreationTime\":{\"key1\":\"2021-07-13T15:09:13.4237935Z\",\"key2\":\"2021-07-13T15:09:13.4237935Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T15:09:13.4237935Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-13T15:09:13.4237935Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-13T15:09:13.3300022Z\",\"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/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag\",\"name\":\"contosorg2diag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"adbalaji\",\"MAB + Used\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-17T05:05:17.6870621Z\",\"key2\":\"2021-05-17T05:05:17.6870621Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-17T05:05:17.6870621Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-17T05:05:17.6870621Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-17T05:05:17.6245395Z\",\"primaryEndpoints\":{\"blob\":\"https://contosorg2diag.blob.core.windows.net/\",\"queue\":\"https://contosorg2diag.queue.core.windows.net/\",\"table\":\"https://contosorg2diag.table.core.windows.net/\",\"file\":\"https://contosorg2diag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c\",\"name\":\"cs110032000c5357b2c\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-02T12:03:10.3727432Z\",\"key2\":\"2021-06-02T12:03:10.3727432Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-02T12:03:10.3727432Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-02T12:03:10.3727432Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-02T12:03:10.3102731Z\",\"primaryEndpoints\":{\"dfs\":\"https://cs110032000c5357b2c.dfs.core.windows.net/\",\"web\":\"https://cs110032000c5357b2c.z23.web.core.windows.net/\",\"blob\":\"https://cs110032000c5357b2c.blob.core.windows.net/\",\"queue\":\"https://cs110032000c5357b2c.queue.core.windows.net/\",\"table\":\"https://cs110032000c5357b2c.table.core.windows.net/\",\"file\":\"https://cs110032000c5357b2c.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd\",\"name\":\"cxzvsdcvsdffdsd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-19T02:21:58.2087720Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-19T02:21:58.2087720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-19T02:21:58.1462584Z\",\"primaryEndpoints\":{\"dfs\":\"https://cxzvsdcvsdffdsd.dfs.core.windows.net/\",\"web\":\"https://cxzvsdcvsdffdsd.z23.web.core.windows.net/\",\"blob\":\"https://cxzvsdcvsdffdsd.blob.core.windows.net/\",\"queue\":\"https://cxzvsdcvsdffdsd.queue.core.windows.net/\",\"table\":\"https://cxzvsdcvsdffdsd.table.core.windows.net/\",\"file\":\"https://cxzvsdcvsdffdsd.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://cxzvsdcvsdffdsd-secondary.dfs.core.windows.net/\",\"web\":\"https://cxzvsdcvsdffdsd-secondary.z23.web.core.windows.net/\",\"blob\":\"https://cxzvsdcvsdffdsd-secondary.blob.core.windows.net/\",\"queue\":\"https://cxzvsdcvsdffdsd-secondary.queue.core.windows.net/\",\"table\":\"https://cxzvsdcvsdffdsd-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1\",\"name\":\"cy6seacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-22T19:38:29.0249098Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-22T19:38:29.0249098Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-22T19:38:28.9467779Z\",\"primaryEndpoints\":{\"dfs\":\"https://cy6seacan01otds1.dfs.core.windows.net/\",\"web\":\"https://cy6seacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://cy6seacan01otds1.blob.core.windows.net/\",\"queue\":\"https://cy6seacan01otds1.queue.core.windows.net/\",\"table\":\"https://cy6seacan01otds1.table.core.windows.net/\",\"file\":\"https://cy6seacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://cy6seacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://cy6seacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://cy6seacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://cy6seacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://cy6seacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1\",\"name\":\"k0pseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-21T09:39:37.5017343Z\",\"key2\":\"2021-05-21T09:39:37.5017343Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-21T09:39:37.5017343Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-21T09:39:37.5017343Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-21T09:39:37.4235817Z\",\"primaryEndpoints\":{\"dfs\":\"https://k0pseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://k0pseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://k0pseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://k0pseacan01otds1.queue.core.windows.net/\",\"table\":\"https://k0pseacan01otds1.table.core.windows.net/\",\"file\":\"https://k0pseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://k0pseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://k0pseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://k0pseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://k0pseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://k0pseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest\",\"name\":\"mbstest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-17T09:12:25.7573058Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-17T09:12:25.7573058Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-17T09:12:25.7104308Z\",\"primaryEndpoints\":{\"dfs\":\"https://mbstest.dfs.core.windows.net/\",\"web\":\"https://mbstest.z23.web.core.windows.net/\",\"blob\":\"https://mbstest.blob.core.windows.net/\",\"queue\":\"https://mbstest.queue.core.windows.net/\",\"table\":\"https://mbstest.table.core.windows.net/\",\"file\":\"https://mbstest.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://mbstest-secondary.dfs.core.windows.net/\",\"web\":\"https://mbstest-secondary.z23.web.core.windows.net/\",\"blob\":\"https://mbstest-secondary.blob.core.windows.net/\",\"queue\":\"https://mbstest-secondary.queue.core.windows.net/\",\"table\":\"https://mbstest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1\",\"name\":\"nhiseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-21T14:28:54.2347420Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-21T14:28:54.2347420Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-21T14:28:54.1566663Z\",\"primaryEndpoints\":{\"dfs\":\"https://nhiseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://nhiseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://nhiseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://nhiseacan01otds1.queue.core.windows.net/\",\"table\":\"https://nhiseacan01otds1.table.core.windows.net/\",\"file\":\"https://nhiseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://nhiseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://nhiseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://nhiseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://nhiseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://nhiseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1\",\"name\":\"nlgseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-24T09:16:01.7492122Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-24T09:16:01.7492122Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-24T09:16:01.7023841Z\",\"primaryEndpoints\":{\"dfs\":\"https://nlgseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://nlgseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://nlgseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://nlgseacan01otds1.queue.core.windows.net/\",\"table\":\"https://nlgseacan01otds1.table.core.windows.net/\",\"file\":\"https://nlgseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://nlgseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://nlgseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://nlgseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://nlgseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://nlgseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1\",\"name\":\"nr1seacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-21T08:01:59.9928649Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-21T08:01:59.9928649Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-21T08:01:59.9147386Z\",\"primaryEndpoints\":{\"dfs\":\"https://nr1seacan01otds1.dfs.core.windows.net/\",\"web\":\"https://nr1seacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://nr1seacan01otds1.blob.core.windows.net/\",\"queue\":\"https://nr1seacan01otds1.queue.core.windows.net/\",\"table\":\"https://nr1seacan01otds1.table.core.windows.net/\",\"file\":\"https://nr1seacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://nr1seacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://nr1seacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://nr1seacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://nr1seacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://nr1seacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1\",\"name\":\"raaseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-12T13:13:07.2218498Z\",\"key2\":\"2021-05-12T13:13:07.2218498Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-12T13:13:07.2374853Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-12T13:13:07.2374853Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-12T13:13:07.1593632Z\",\"primaryEndpoints\":{\"dfs\":\"https://raaseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://raaseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://raaseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://raaseacan01otds1.queue.core.windows.net/\",\"table\":\"https://raaseacan01otds1.table.core.windows.net/\",\"file\":\"https://raaseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://raaseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://raaseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://raaseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://raaseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://raaseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag\",\"name\":\"sakaarmabdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"bhaskerk\",\"isMABUsed\":\"Yes\",\"DeleteBy\":\"01-2025\",\"Auto + Shutdown\":\"No\",\"Purpose\":\" BVT\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-24T09:51:00.2456898Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-24T09:51:00.2456898Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-24T09:51:00.1675873Z\",\"primaryEndpoints\":{\"blob\":\"https://sakaarmabdiag.blob.core.windows.net/\",\"queue\":\"https://sakaarmabdiag.queue.core.windows.net/\",\"table\":\"https://sakaarmabdiag.table.core.windows.net/\",\"file\":\"https://sakaarmabdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1\",\"name\":\"skrseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-07T20:30:53.5667313Z\",\"key2\":\"2021-04-07T20:30:53.5667313Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-07T20:30:53.5667313Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-07T20:30:53.5667313Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-07T20:30:53.4886072Z\",\"primaryEndpoints\":{\"dfs\":\"https://skrseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://skrseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://skrseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://skrseacan01otds1.queue.core.windows.net/\",\"table\":\"https://skrseacan01otds1.table.core.windows.net/\",\"file\":\"https://skrseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://skrseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://skrseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://skrseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://skrseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://skrseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1\",\"name\":\"sojseacan01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-27T10:30:48.3325640Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-27T10:30:48.3325640Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-27T10:30:48.2544220Z\",\"primaryEndpoints\":{\"dfs\":\"https://sojseacan01otds1.dfs.core.windows.net/\",\"web\":\"https://sojseacan01otds1.z23.web.core.windows.net/\",\"blob\":\"https://sojseacan01otds1.blob.core.windows.net/\",\"queue\":\"https://sojseacan01otds1.queue.core.windows.net/\",\"table\":\"https://sojseacan01otds1.table.core.windows.net/\",\"file\":\"https://sojseacan01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sojseacan01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://sojseacan01otds1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://sojseacan01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://sojseacan01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://sojseacan01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scuspostgrestesting/providers/Microsoft.Storage/storageAccounts/ossrestorefilesscus\",\"name\":\"ossrestorefilesscus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{\" + Owner\":\"vikottur\",\"Purpose\":\" BVT\",\"MAB Used\":\"\_Yes\",\"Delete + By\":\"01-2030\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-17T14:04:14.1560430Z\",\"key2\":\"2021-03-17T14:04:14.1560430Z\"},\"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-03-17T14:04:14.1560430Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T14:04:14.1560430Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-17T14:04:14.0760131Z\",\"primaryEndpoints\":{\"dfs\":\"https://ossrestorefilesscus.dfs.core.windows.net/\",\"web\":\"https://ossrestorefilesscus.z21.web.core.windows.net/\",\"blob\":\"https://ossrestorefilesscus.blob.core.windows.net/\",\"queue\":\"https://ossrestorefilesscus.queue.core.windows.net/\",\"table\":\"https://ossrestorefilesscus.table.core.windows.net/\",\"file\":\"https://ossrestorefilesscus.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/objectreplicationrg/providers/Microsoft.Storage/storageAccounts/objrepdest\",\"name\":\"objrepdest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-02T06:14:42.6755992Z\",\"key2\":\"2021-07-02T06:14:42.6755992Z\"},\"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-07-02T06:14:42.6755992Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-02T06:14:42.6755992Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-02T06:14:42.5818638Z\",\"primaryEndpoints\":{\"dfs\":\"https://objrepdest.dfs.core.windows.net/\",\"web\":\"https://objrepdest.z19.web.core.windows.net/\",\"blob\":\"https://objrepdest.blob.core.windows.net/\",\"queue\":\"https://objrepdest.queue.core.windows.net/\",\"table\":\"https://objrepdest.table.core.windows.net/\",\"file\":\"https://objrepdest.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://objrepdest-secondary.dfs.core.windows.net/\",\"web\":\"https://objrepdest-secondary.z19.web.core.windows.net/\",\"blob\":\"https://objrepdest-secondary.blob.core.windows.net/\",\"queue\":\"https://objrepdest-secondary.queue.core.windows.net/\",\"table\":\"https://objrepdest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarossdb/providers/Microsoft.Storage/storageAccounts/sakaar2\",\"name\":\"sakaar2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-24T07:16:28.5898889Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-24T07:16:28.5898889Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-24T07:16:28.5117808Z\",\"primaryEndpoints\":{\"dfs\":\"https://sakaar2.dfs.core.windows.net/\",\"web\":\"https://sakaar2.z19.web.core.windows.net/\",\"blob\":\"https://sakaar2.blob.core.windows.net/\",\"queue\":\"https://sakaar2.queue.core.windows.net/\",\"table\":\"https://sakaar2.table.core.windows.net/\",\"file\":\"https://sakaar2.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sakaar2-secondary.dfs.core.windows.net/\",\"web\":\"https://sakaar2-secondary.z19.web.core.windows.net/\",\"blob\":\"https://sakaar2-secondary.blob.core.windows.net/\",\"queue\":\"https://sakaar2-secondary.queue.core.windows.net/\",\"table\":\"https://sakaar2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/storageaccountsakaabddb\",\"name\":\"storageaccountsakaabddb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-22T12:49:02.0071161Z\",\"key2\":\"2021-04-22T12:49:02.0071161Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-22T12:49:02.0071161Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-22T12:49:02.0071161Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-22T12:49:01.9133233Z\",\"primaryEndpoints\":{\"blob\":\"https://storageaccountsakaabddb.blob.core.windows.net/\",\"queue\":\"https://storageaccountsakaabddb.queue.core.windows.net/\",\"table\":\"https://storageaccountsakaabddb.table.core.windows.net/\",\"file\":\"https://storageaccountsakaabddb.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarTestGroup/providers/Microsoft.Storage/storageAccounts/storageuylbjjmyzyw22\",\"name\":\"storageuylbjjmyzyw22\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-22T13:10:43.0989310Z\",\"key2\":\"2021-04-22T13:10:43.0989310Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-22T13:10:43.0989310Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-22T13:10:43.0989310Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-22T13:10:43.0364669Z\",\"primaryEndpoints\":{\"blob\":\"https://storageuylbjjmyzyw22.blob.core.windows.net/\",\"queue\":\"https://storageuylbjjmyzyw22.queue.core.windows.net/\",\"table\":\"https://storageuylbjjmyzyw22.table.core.windows.net/\",\"file\":\"https://storageuylbjjmyzyw22.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-AE-Testing/providers/Microsoft.Storage/storageAccounts/blobbackupaetest\",\"name\":\"blobbackupaetest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"australiaeast\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-21T04:51:03.9900700Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-21T04:51:03.9900700Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-21T04:51:03.9120063Z\",\"primaryEndpoints\":{\"dfs\":\"https://blobbackupaetest.dfs.core.windows.net/\",\"web\":\"https://blobbackupaetest.z8.web.core.windows.net/\",\"blob\":\"https://blobbackupaetest.blob.core.windows.net/\",\"queue\":\"https://blobbackupaetest.queue.core.windows.net/\",\"table\":\"https://blobbackupaetest.table.core.windows.net/\",\"file\":\"https://blobbackupaetest.file.core.windows.net/\"},\"primaryLocation\":\"australiaeast\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"australiasoutheast\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://blobbackupaetest-secondary.dfs.core.windows.net/\",\"web\":\"https://blobbackupaetest-secondary.z8.web.core.windows.net/\",\"blob\":\"https://blobbackupaetest-secondary.blob.core.windows.net/\",\"queue\":\"https://blobbackupaetest-secondary.queue.core.windows.net/\",\"table\":\"https://blobbackupaetest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rapujari-testrg/providers/Microsoft.Storage/storageAccounts/teststoragerapujari\",\"name\":\"teststoragerapujari\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"australiaeast\",\"tags\":{\"Owner\":\"rapujari\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2020\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-30T09:33:22.8759822Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-30T09:33:22.8759822Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-12-30T09:33:22.8134987Z\",\"primaryEndpoints\":{\"dfs\":\"https://teststoragerapujari.dfs.core.windows.net/\",\"web\":\"https://teststoragerapujari.z8.web.core.windows.net/\",\"blob\":\"https://teststoragerapujari.blob.core.windows.net/\",\"queue\":\"https://teststoragerapujari.queue.core.windows.net/\",\"table\":\"https://teststoragerapujari.table.core.windows.net/\",\"file\":\"https://teststoragerapujari.file.core.windows.net/\"},\"primaryLocation\":\"australiaeast\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"australiasoutheast\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://teststoragerapujari-secondary.dfs.core.windows.net/\",\"web\":\"https://teststoragerapujari-secondary.z8.web.core.windows.net/\",\"blob\":\"https://teststoragerapujari-secondary.blob.core.windows.net/\",\"queue\":\"https://teststoragerapujari-secondary.queue.core.windows.net/\",\"table\":\"https://teststoragerapujari-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.Storage/storageAccounts/3pyasepod01otds1\",\"name\":\"3pyasepod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"australiasoutheast\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-16T11:21:17.1239550Z\",\"key2\":\"2021-06-16T11:21:17.1239550Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-16T11:21:17.1239550Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-16T11:21:17.1239550Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-16T11:21:17.0771157Z\",\"primaryEndpoints\":{\"dfs\":\"https://3pyasepod01otds1.dfs.core.windows.net/\",\"web\":\"https://3pyasepod01otds1.z26.web.core.windows.net/\",\"blob\":\"https://3pyasepod01otds1.blob.core.windows.net/\",\"queue\":\"https://3pyasepod01otds1.queue.core.windows.net/\",\"table\":\"https://3pyasepod01otds1.table.core.windows.net/\",\"file\":\"https://3pyasepod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"australiasoutheast\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"australiaeast\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://3pyasepod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://3pyasepod01otds1-secondary.z26.web.core.windows.net/\",\"blob\":\"https://3pyasepod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://3pyasepod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://3pyasepod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/7udinspod01otds1\",\"name\":\"7udinspod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-01T10:04:16.0905979Z\",\"key2\":\"2021-07-01T10:04:16.0905979Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-01T10:04:16.0905979Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-01T10:04:16.0905979Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-01T10:04:16.0281322Z\",\"primaryEndpoints\":{\"dfs\":\"https://7udinspod01otds1.dfs.core.windows.net/\",\"web\":\"https://7udinspod01otds1.z30.web.core.windows.net/\",\"blob\":\"https://7udinspod01otds1.blob.core.windows.net/\",\"queue\":\"https://7udinspod01otds1.queue.core.windows.net/\",\"table\":\"https://7udinspod01otds1.table.core.windows.net/\",\"file\":\"https://7udinspod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralindia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://7udinspod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://7udinspod01otds1-secondary.z30.web.core.windows.net/\",\"blob\":\"https://7udinspod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://7udinspod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://7udinspod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ag-west-us-rg/providers/Microsoft.Storage/storageAccounts/b8vinspod01otds1\",\"name\":\"b8vinspod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-28T14:04:46.9860169Z\",\"key2\":\"2021-06-28T14:04:46.9860169Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-28T14:04:46.9860169Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-28T14:04:46.9860169Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-28T14:04:46.9235361Z\",\"primaryEndpoints\":{\"dfs\":\"https://b8vinspod01otds1.dfs.core.windows.net/\",\"web\":\"https://b8vinspod01otds1.z30.web.core.windows.net/\",\"blob\":\"https://b8vinspod01otds1.blob.core.windows.net/\",\"queue\":\"https://b8vinspod01otds1.queue.core.windows.net/\",\"table\":\"https://b8vinspod01otds1.table.core.windows.net/\",\"file\":\"https://b8vinspod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralindia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://b8vinspod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://b8vinspod01otds1-secondary.z30.web.core.windows.net/\",\"blob\":\"https://b8vinspod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://b8vinspod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://b8vinspod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/grvalecRG/providers/Microsoft.Storage/storageAccounts/grvalecrestoreasfile\",\"name\":\"grvalecrestoreasfile\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-24T08:19:33.6419604Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-24T08:19:33.6419604Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Cool\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-24T08:19:33.5638262Z\",\"primaryEndpoints\":{\"dfs\":\"https://grvalecrestoreasfile.dfs.core.windows.net/\",\"blob\":\"https://grvalecrestoreasfile.blob.core.windows.net/\",\"table\":\"https://grvalecrestoreasfile.table.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarhotfix2_group/providers/Microsoft.Storage/storageAccounts/sakaarhotfix2groupdiag\",\"name\":\"sakaarhotfix2groupdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{\"Auto + Shutdown\":\"No\",\"DeleteBy\":\"01-2025\",\"isMABUsed\":\"Yes\",\"MAB Used\":\"Yes\",\"Owner\":\"bhaskerk\",\"Purpose\":\"test + hotfix\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-24T19:41:57.9896854Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-24T19:41:57.9896854Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-24T19:41:57.9428101Z\",\"primaryEndpoints\":{\"blob\":\"https://sakaarhotfix2groupdiag.blob.core.windows.net/\",\"queue\":\"https://sakaarhotfix2groupdiag.queue.core.windows.net/\",\"table\":\"https://sakaarhotfix2groupdiag.table.core.windows.net/\",\"file\":\"https://sakaarhotfix2groupdiag.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/grvalecRG/providers/Microsoft.Storage/storageAccounts/testbatch\",\"name\":\"testbatch\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{\"MabUsed\":\"\_Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-03-09T05:31:49.1977847Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-09T05:31:49.1977847Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-09T05:31:49.1665700Z\",\"primaryEndpoints\":{\"dfs\":\"https://testbatch.dfs.core.windows.net/\",\"web\":\"https://testbatch.z30.web.core.windows.net/\",\"blob\":\"https://testbatch.blob.core.windows.net/\",\"queue\":\"https://testbatch.queue.core.windows.net/\",\"table\":\"https://testbatch.table.core.windows.net/\",\"file\":\"https://testbatch.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003000092de0941\",\"name\":\"csg1003000092de0941\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-23T10:29:18.6840766Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-23T10:29:18.6840766Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-23T10:29:18.6372039Z\",\"primaryEndpoints\":{\"dfs\":\"https://csg1003000092de0941.dfs.core.windows.net/\",\"web\":\"https://csg1003000092de0941.z29.web.core.windows.net/\",\"blob\":\"https://csg1003000092de0941.blob.core.windows.net/\",\"queue\":\"https://csg1003000092de0941.queue.core.windows.net/\",\"table\":\"https://csg1003000092de0941.table.core.windows.net/\",\"file\":\"https://csg1003000092de0941.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10030000ab5d006e\",\"name\":\"csg10030000ab5d006e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-07T18:32:06.0455401Z\",\"key2\":\"2021-06-07T18:32:06.0455401Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-07T18:32:06.0455401Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-07T18:32:06.0455401Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-07T18:32:05.9830066Z\",\"primaryEndpoints\":{\"dfs\":\"https://csg10030000ab5d006e.dfs.core.windows.net/\",\"web\":\"https://csg10030000ab5d006e.z29.web.core.windows.net/\",\"blob\":\"https://csg10030000ab5d006e.blob.core.windows.net/\",\"queue\":\"https://csg10030000ab5d006e.queue.core.windows.net/\",\"table\":\"https://csg10030000ab5d006e.table.core.windows.net/\",\"file\":\"https://csg10030000ab5d006e.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003200099e7bffd\",\"name\":\"csg1003200099e7bffd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-23T13:58:19.3450185Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-23T13:58:19.3450185Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-23T13:58:19.3137160Z\",\"primaryEndpoints\":{\"dfs\":\"https://csg1003200099e7bffd.dfs.core.windows.net/\",\"web\":\"https://csg1003200099e7bffd.z29.web.core.windows.net/\",\"blob\":\"https://csg1003200099e7bffd.blob.core.windows.net/\",\"queue\":\"https://csg1003200099e7bffd.queue.core.windows.net/\",\"table\":\"https://csg1003200099e7bffd.table.core.windows.net/\",\"file\":\"https://csg1003200099e7bffd.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000a812434d\",\"name\":\"csg10032000a812434d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-10-21T08:51:29.5379744Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-10-21T08:51:29.5379744Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-10-21T08:51:29.5068992Z\",\"primaryEndpoints\":{\"dfs\":\"https://csg10032000a812434d.dfs.core.windows.net/\",\"web\":\"https://csg10032000a812434d.z29.web.core.windows.net/\",\"blob\":\"https://csg10032000a812434d.blob.core.windows.net/\",\"queue\":\"https://csg10032000a812434d.queue.core.windows.net/\",\"table\":\"https://csg10032000a812434d.table.core.windows.net/\",\"file\":\"https://csg10032000a812434d.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10037ffe801b776d\",\"name\":\"csg10037ffe801b776d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-11T09:51:51.7825403Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-11T09:51:51.7825403Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-11T09:51:51.7200087Z\",\"primaryEndpoints\":{\"dfs\":\"https://csg10037ffe801b776d.dfs.core.windows.net/\",\"web\":\"https://csg10037ffe801b776d.z29.web.core.windows.net/\",\"blob\":\"https://csg10037ffe801b776d.blob.core.windows.net/\",\"queue\":\"https://csg10037ffe801b776d.queue.core.windows.net/\",\"table\":\"https://csg10037ffe801b776d.table.core.windows.net/\",\"file\":\"https://csg10037ffe801b776d.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffd913f6815\",\"name\":\"csg1003bffd913f6815\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{\"ms-resource-usage\":\"azure-cloud-shell\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-27T07:08:41.1527047Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-27T07:08:41.1527047Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-27T07:08:41.1058358Z\",\"primaryEndpoints\":{\"dfs\":\"https://csg1003bffd913f6815.dfs.core.windows.net/\",\"web\":\"https://csg1003bffd913f6815.z29.web.core.windows.net/\",\"blob\":\"https://csg1003bffd913f6815.blob.core.windows.net/\",\"queue\":\"https://csg1003bffd913f6815.queue.core.windows.net/\",\"table\":\"https://csg1003bffd913f6815.table.core.windows.net/\",\"file\":\"https://csg1003bffd913f6815.file.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/orspoctestingcaneast\",\"name\":\"orspoctestingcaneast\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"canadaeast\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-18T21:04:56.0011756Z\",\"key2\":\"2021-03-18T21:04:56.0011756Z\"},\"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-03-18T21:04:56.0167975Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-18T21:04:56.0167975Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-18T21:04:55.9699250Z\",\"primaryEndpoints\":{\"dfs\":\"https://orspoctestingcaneast.dfs.core.windows.net/\",\"web\":\"https://orspoctestingcaneast.z27.web.core.windows.net/\",\"blob\":\"https://orspoctestingcaneast.blob.core.windows.net/\",\"queue\":\"https://orspoctestingcaneast.queue.core.windows.net/\",\"table\":\"https://orspoctestingcaneast.table.core.windows.net/\",\"file\":\"https://orspoctestingcaneast.file.core.windows.net/\"},\"primaryLocation\":\"canadaeast\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"canadacentral\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ag-disk-ga-rg/providers/Microsoft.Storage/storageAccounts/8elwus2pod01otds1\",\"name\":\"8elwus2pod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-23T07:34:13.8644766Z\",\"key2\":\"2021-03-23T07:34:13.8644766Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-23T07:34:13.8644766Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-23T07:34:13.8644766Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-23T07:34:13.7863492Z\",\"primaryEndpoints\":{\"dfs\":\"https://8elwus2pod01otds1.dfs.core.windows.net/\",\"web\":\"https://8elwus2pod01otds1.z5.web.core.windows.net/\",\"blob\":\"https://8elwus2pod01otds1.blob.core.windows.net/\",\"queue\":\"https://8elwus2pod01otds1.queue.core.windows.net/\",\"table\":\"https://8elwus2pod01otds1.table.core.windows.net/\",\"file\":\"https://8elwus2pod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://8elwus2pod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://8elwus2pod01otds1-secondary.z5.web.core.windows.net/\",\"blob\":\"https://8elwus2pod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://8elwus2pod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://8elwus2pod01otds1-secondary.table.core.windows.net/\"}}},{\"identity\":{\"principalId\":\"069928c6-7894-4fe7-a227-52d08b87737f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.Storage/storageAccounts/ashcustmangedkeytestsa\",\"name\":\"ashcustmangedkeytestsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-12T22:37:16.6892639Z\",\"key2\":\"2021-05-12T22:37:16.6892639Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"allowSharedKeyAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"requireInfrastructureEncryption\":true,\"keyvaultproperties\":{\"currentVersionedKeyIdentifier\":\"https://ashtestkeyvault.vault.azure.net/keys/SAEncryptionKeyTest/2fdb68e916d74fc3afc8cb12aecd81e5\",\"lastKeyRotationTimestamp\":\"2021-05-12T22:42:06.3639508Z\",\"currentVersionedKeyExpirationTimestamp\":\"1970-01-01T00:00:00.0000000Z\",\"keyvaulturi\":\"https://ashtestkeyvault.vault.azure.net\",\"keyname\":\"SAEncryptionKeyTest\",\"keyversion\":\"\"},\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-12T22:37:16.6892639Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-12T22:37:16.6892639Z\"}},\"keySource\":\"Microsoft.Keyvault\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-12T22:37:16.5955418Z\",\"primaryEndpoints\":{\"dfs\":\"https://ashcustmangedkeytestsa.dfs.core.windows.net/\",\"web\":\"https://ashcustmangedkeytestsa.z5.web.core.windows.net/\",\"blob\":\"https://ashcustmangedkeytestsa.blob.core.windows.net/\",\"queue\":\"https://ashcustmangedkeytestsa.queue.core.windows.net/\",\"table\":\"https://ashcustmangedkeytestsa.table.core.windows.net/\",\"file\":\"https://ashcustmangedkeytestsa.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql1/providers/Microsoft.Storage/storageAccounts/viveksisql1diag\",\"name\":\"viveksisql1diag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{\"mabused\":\"yes\",\"purpose\":\"testing\",\"Owner\":\"viveksi\",\"DeleteBy\":\"06-2020\",\"IsMabUsed\":\"yes\",\"autoshutdown + \":\"yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-03T07:56:37.0508458Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-03T07:56:37.0508458Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-03T07:56:36.9883317Z\",\"primaryEndpoints\":{\"blob\":\"https://viveksisql1diag.blob.core.windows.net/\",\"queue\":\"https://viveksisql1diag.queue.core.windows.net/\",\"table\":\"https://viveksisql1diag.table.core.windows.net/\",\"file\":\"https://viveksisql1diag.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-WCUS-Testing/providers/Microsoft.Storage/storageAccounts/blobbackupwcus\",\"name\":\"blobbackupwcus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T17:38:52.4603291Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T17:38:52.4603291Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-19T17:38:52.3978505Z\",\"primaryEndpoints\":{\"dfs\":\"https://blobbackupwcus.dfs.core.windows.net/\",\"web\":\"https://blobbackupwcus.z4.web.core.windows.net/\",\"blob\":\"https://blobbackupwcus.blob.core.windows.net/\",\"queue\":\"https://blobbackupwcus.queue.core.windows.net/\",\"table\":\"https://blobbackupwcus.table.core.windows.net/\",\"file\":\"https://blobbackupwcus.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://blobbackupwcus-secondary.dfs.core.windows.net/\",\"web\":\"https://blobbackupwcus-secondary.z4.web.core.windows.net/\",\"blob\":\"https://blobbackupwcus-secondary.blob.core.windows.net/\",\"queue\":\"https://blobbackupwcus-secondary.queue.core.windows.net/\",\"table\":\"https://blobbackupwcus-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/vbalaoptierbb1\",\"name\":\"vbalaoptierbb1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T23:23:15.4287523Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T23:23:15.4287523Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-19T23:23:15.3662661Z\",\"primaryEndpoints\":{\"dfs\":\"https://vbalaoptierbb1.dfs.core.windows.net/\",\"web\":\"https://vbalaoptierbb1.z4.web.core.windows.net/\",\"blob\":\"https://vbalaoptierbb1.blob.core.windows.net/\",\"queue\":\"https://vbalaoptierbb1.queue.core.windows.net/\",\"table\":\"https://vbalaoptierbb1.table.core.windows.net/\",\"file\":\"https://vbalaoptierbb1.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://vbalaoptierbb1-secondary.dfs.core.windows.net/\",\"web\":\"https://vbalaoptierbb1-secondary.z4.web.core.windows.net/\",\"blob\":\"https://vbalaoptierbb1-secondary.blob.core.windows.net/\",\"queue\":\"https://vbalaoptierbb1-secondary.queue.core.windows.net/\",\"table\":\"https://vbalaoptierbb1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Storage/storageAccounts/azureuksstakosi100119360\",\"name\":\"azureuksstakosi100119360\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"ukwest\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-10-01T14:06:35.9769097Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-10-01T14:06:35.9769097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-10-01T14:06:35.9144428Z\",\"primaryEndpoints\":{\"blob\":\"https://azureuksstakosi100119360.blob.core.windows.net/\",\"queue\":\"https://azureuksstakosi100119360.queue.core.windows.net/\",\"table\":\"https://azureuksstakosi100119360.table.core.windows.net/\",\"file\":\"https://azureuksstakosi100119360.file.core.windows.net/\"},\"primaryLocation\":\"ukwest\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uksStampTesting1/providers/Microsoft.Storage/storageAccounts/sagesahoo24\",\"name\":\"sagesahoo24\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"ukwest\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-24T05:59:55.7703307Z\",\"key2\":\"2021-03-24T05:59:55.7703307Z\"},\"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-03-24T05:59:55.7703307Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-24T05:59:55.7703307Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-24T05:59:55.7078677Z\",\"primaryEndpoints\":{\"dfs\":\"https://sagesahoo24.dfs.core.windows.net/\",\"web\":\"https://sagesahoo24.z35.web.core.windows.net/\",\"blob\":\"https://sagesahoo24.blob.core.windows.net/\",\"queue\":\"https://sagesahoo24.queue.core.windows.net/\",\"table\":\"https://sagesahoo24.table.core.windows.net/\",\"file\":\"https://sagesahoo24.file.core.windows.net/\"},\"primaryLocation\":\"ukwest\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"uksouth\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sagesahoo24-secondary.dfs.core.windows.net/\",\"web\":\"https://sagesahoo24-secondary.z35.web.core.windows.net/\",\"blob\":\"https://sagesahoo24-secondary.blob.core.windows.net/\",\"queue\":\"https://sagesahoo24-secondary.queue.core.windows.net/\",\"table\":\"https://sagesahoo24-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgkrc-otds-rraj/providers/Microsoft.Storage/storageAccounts/3b6krcpod01otds1\",\"name\":\"3b6krcpod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"koreacentral\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-21T12:48:34.7835524Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-21T12:48:34.7835524Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-21T12:48:34.7210376Z\",\"primaryEndpoints\":{\"dfs\":\"https://3b6krcpod01otds1.dfs.core.windows.net/\",\"web\":\"https://3b6krcpod01otds1.z12.web.core.windows.net/\",\"blob\":\"https://3b6krcpod01otds1.blob.core.windows.net/\",\"queue\":\"https://3b6krcpod01otds1.queue.core.windows.net/\",\"table\":\"https://3b6krcpod01otds1.table.core.windows.net/\",\"file\":\"https://3b6krcpod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"koreacentral\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"koreasouth\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://3b6krcpod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://3b6krcpod01otds1-secondary.z12.web.core.windows.net/\",\"blob\":\"https://3b6krcpod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://3b6krcpod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://3b6krcpod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgkrs-otds-rraj/providers/Microsoft.Storage/storageAccounts/5kzkrspod01otds1\",\"name\":\"5kzkrspod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"koreasouth\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-21T12:50:10.9379744Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-21T12:50:10.9379744Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-21T12:50:10.8754759Z\",\"primaryEndpoints\":{\"dfs\":\"https://5kzkrspod01otds1.dfs.core.windows.net/\",\"web\":\"https://5kzkrspod01otds1.z32.web.core.windows.net/\",\"blob\":\"https://5kzkrspod01otds1.blob.core.windows.net/\",\"queue\":\"https://5kzkrspod01otds1.queue.core.windows.net/\",\"table\":\"https://5kzkrspod01otds1.table.core.windows.net/\",\"file\":\"https://5kzkrspod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"koreasouth\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"koreacentral\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://5kzkrspod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://5kzkrspod01otds1-secondary.z32.web.core.windows.net/\",\"blob\":\"https://5kzkrspod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://5kzkrspod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://5kzkrspod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql2/providers/Microsoft.Storage/storageAccounts/viveksisql2diag\",\"name\":\"viveksisql2diag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"koreasouth\",\"tags\":{\"MAB + Used\":\"yes\",\"AutoShutdown\":\"yes\",\"DeleteBy\":\"07-2020\",\"Owner\":\"viveksi\",\"Purpose\":\"POC\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-06T09:39:35.8176942Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-06T09:39:35.8176942Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-06T09:39:35.7708151Z\",\"primaryEndpoints\":{\"blob\":\"https://viveksisql2diag.blob.core.windows.net/\",\"queue\":\"https://viveksisql2diag.queue.core.windows.net/\",\"table\":\"https://viveksisql2diag.table.core.windows.net/\",\"file\":\"https://viveksisql2diag.file.core.windows.net/\"},\"primaryLocation\":\"koreasouth\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/viveksisql3/providers/Microsoft.Storage/storageAccounts/viveksisql3diag\",\"name\":\"viveksisql3diag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"koreasouth\",\"tags\":{\"AutoShutdown\":\"yes\",\"DeleteBy\":\"07-2020\",\"Mab + Used\":\"yes\",\"Owner\":\"viveksi\",\"Purpose\":\"POC\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-22T12:51:15.8913609Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-22T12:51:15.8913609Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-22T12:51:15.7819964Z\",\"primaryEndpoints\":{\"blob\":\"https://viveksisql3diag.blob.core.windows.net/\",\"queue\":\"https://viveksisql3diag.queue.core.windows.net/\",\"table\":\"https://viveksisql3diag.table.core.windows.net/\",\"file\":\"https://viveksisql3diag.file.core.windows.net/\"},\"primaryLocation\":\"koreasouth\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/sanstore123\",\"name\":\"sanstore123\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southafricanorth\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-03-09T05:13:04.6470568Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-09T05:13:04.6470568Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-09T05:13:04.6157959Z\",\"primaryEndpoints\":{\"dfs\":\"https://sanstore123.dfs.core.windows.net/\",\"web\":\"https://sanstore123.z1.web.core.windows.net/\",\"blob\":\"https://sanstore123.blob.core.windows.net/\",\"queue\":\"https://sanstore123.queue.core.windows.net/\",\"table\":\"https://sanstore123.table.core.windows.net/\",\"file\":\"https://sanstore123.file.core.windows.net/\"},\"primaryLocation\":\"southafricanorth\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southafricawest\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sanstore123-secondary.dfs.core.windows.net/\",\"web\":\"https://sanstore123-secondary.z1.web.core.windows.net/\",\"blob\":\"https://sanstore123-secondary.blob.core.windows.net/\",\"queue\":\"https://sanstore123-secondary.queue.core.windows.net/\",\"table\":\"https://sanstore123-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/abhinitsa\",\"name\":\"abhinitsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-29T10:16:11.8727754Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-10-29T10:16:11.8727754Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-10-29T10:16:11.7777331Z\",\"primaryEndpoints\":{\"dfs\":\"https://abhinitsa.dfs.core.windows.net/\",\"web\":\"https://abhinitsa.z3.web.core.windows.net/\",\"blob\":\"https://abhinitsa.blob.core.windows.net/\",\"queue\":\"https://abhinitsa.queue.core.windows.net/\",\"table\":\"https://abhinitsa.table.core.windows.net/\",\"file\":\"https://abhinitsa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://abhinitsa-secondary.dfs.core.windows.net/\",\"web\":\"https://abhinitsa-secondary.z3.web.core.windows.net/\",\"blob\":\"https://abhinitsa-secondary.blob.core.windows.net/\",\"queue\":\"https://abhinitsa-secondary.queue.core.windows.net/\",\"table\":\"https://abhinitsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkRG/providers/Microsoft.Storage/storageAccounts/abhinkrgdiag621\",\"name\":\"abhinkrgdiag621\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Auto + Shutdown\":\"No\",\"MAB Used\":\" yes\",\"Owner\":\"cvarsh\",\"Purpose\":\" + Testing\",\"DeleteBy\":\"01-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-10T00:07:10.5934989Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-10T00:07:10.5934989Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-10T00:07:10.5310050Z\",\"primaryEndpoints\":{\"blob\":\"https://abhinkrgdiag621.blob.core.windows.net/\",\"queue\":\"https://abhinkrgdiag621.queue.core.windows.net/\",\"table\":\"https://abhinkrgdiag621.table.core.windows.net/\",\"file\":\"https://abhinkrgdiag621.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anampelly-srunnert-rg/providers/Microsoft.Storage/storageAccounts/anampellysa1\",\"name\":\"anampellysa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-10T07:00:11.9630542Z\",\"key2\":\"2021-05-10T07:00:11.9630542Z\"},\"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-05-10T07:00:11.9680222Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-10T07:00:11.9680222Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-10T07:00:11.8780489Z\",\"primaryEndpoints\":{\"dfs\":\"https://anampellysa1.dfs.core.windows.net/\",\"web\":\"https://anampellysa1.z3.web.core.windows.net/\",\"blob\":\"https://anampellysa1.blob.core.windows.net/\",\"queue\":\"https://anampellysa1.queue.core.windows.net/\",\"table\":\"https://anampellysa1.table.core.windows.net/\",\"file\":\"https://anampellysa1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Storage/storageAccounts/archivesnapshottesting\",\"name\":\"archivesnapshottesting\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\" + Owner\":\"viharip\",\"DeleteBy\":\"12-2021\",\"MAB Used\":\" Yes\",\"Usage\":\"Archive + Testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-18T23:39:44.6954102Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-18T23:39:44.6954102Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-18T23:39:44.6329062Z\",\"primaryEndpoints\":{\"dfs\":\"https://archivesnapshottesting.dfs.core.windows.net/\",\"web\":\"https://archivesnapshottesting.z3.web.core.windows.net/\",\"blob\":\"https://archivesnapshottesting.blob.core.windows.net/\",\"queue\":\"https://archivesnapshottesting.queue.core.windows.net/\",\"table\":\"https://archivesnapshottesting.table.core.windows.net/\",\"file\":\"https://archivesnapshottesting.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Storage/storageAccounts/arpjadrlzn3\",\"name\":\"arpjadrlzn3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"MABUsed\":\"true\",\"Owner\":\"arpja\",\"Purpose\":\"ecy + drill\",\"DeleteBy\":\"01-2020\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-28T08:00:54.8466563Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-28T08:00:54.8466563Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-11-28T08:00:54.8154107Z\",\"primaryEndpoints\":{\"blob\":\"https://arpjadrlzn3.blob.core.windows.net/\",\"queue\":\"https://arpjadrlzn3.queue.core.windows.net/\",\"table\":\"https://arpjadrlzn3.table.core.windows.net/\",\"file\":\"https://arpjadrlzn3.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_ZRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Storage/storageAccounts/azdrillafs\",\"name\":\"azdrillafs\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"largeFileSharesState\":\"Disabled\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-06T06:11:00.9849050Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-06T06:11:00.9849050Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-12-06T06:11:00.9068148Z\",\"primaryEndpoints\":{\"dfs\":\"https://azdrillafs.dfs.core.windows.net/\",\"web\":\"https://azdrillafs.z3.web.core.windows.net/\",\"blob\":\"https://azdrillafs.blob.core.windows.net/\",\"queue\":\"https://azdrillafs.queue.core.windows.net/\",\"table\":\"https://azdrillafs.table.core.windows.net/\",\"file\":\"https://azdrillafs.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BackupCenterRG/providers/Microsoft.Storage/storageAccounts/bcsa3\",\"name\":\"bcsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-03T17:13:28.0304932Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-03T17:13:28.0304932Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-03T17:13:27.9454803Z\",\"primaryEndpoints\":{\"dfs\":\"https://bcsa3.dfs.core.windows.net/\",\"web\":\"https://bcsa3.z3.web.core.windows.net/\",\"blob\":\"https://bcsa3.blob.core.windows.net/\",\"queue\":\"https://bcsa3.queue.core.windows.net/\",\"table\":\"https://bcsa3.table.core.windows.net/\",\"file\":\"https://bcsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://bcsa3-secondary.dfs.core.windows.net/\",\"web\":\"https://bcsa3-secondary.z3.web.core.windows.net/\",\"blob\":\"https://bcsa3-secondary.blob.core.windows.net/\",\"queue\":\"https://bcsa3-secondary.queue.core.windows.net/\",\"table\":\"https://bcsa3-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhaskerkECYRG/providers/Microsoft.Storage/storageAccounts/bhaskerksa\",\"name\":\"bhaskerksa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-22T12:37:49.4311831Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-22T12:37:49.4311831Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-22T12:37:49.3530889Z\",\"primaryEndpoints\":{\"dfs\":\"https://bhaskerksa.dfs.core.windows.net/\",\"web\":\"https://bhaskerksa.z3.web.core.windows.net/\",\"blob\":\"https://bhaskerksa.blob.core.windows.net/\",\"queue\":\"https://bhaskerksa.queue.core.windows.net/\",\"table\":\"https://bhaskerksa.table.core.windows.net/\",\"file\":\"https://bhaskerksa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Storage/storageAccounts/chandrikargdiag549\",\"name\":\"chandrikargdiag549\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Owner\":\"chgonugu\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2021\",\"MabUsed\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-12T12:28:19.3937015Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-12T12:28:19.3937015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-12T12:28:19.3468304Z\",\"primaryEndpoints\":{\"blob\":\"https://chandrikargdiag549.blob.core.windows.net/\",\"queue\":\"https://chandrikargdiag549.queue.core.windows.net/\",\"table\":\"https://chandrikargdiag549.table.core.windows.net/\",\"file\":\"https://chandrikargdiag549.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Storage/storageAccounts/ecydrillgrssa\",\"name\":\"ecydrillgrssa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"owner\":\"arpja\",\"Purpose\":\"ecy + drill\",\"DeleteBy\":\"01-2020\",\"MABUsed\":\"true\",\"temp\":\"temp\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-10T12:09:04.1229586Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-10T12:09:04.1229586Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-12-10T12:09:04.0760861Z\",\"primaryEndpoints\":{\"dfs\":\"https://ecydrillgrssa.dfs.core.windows.net/\",\"web\":\"https://ecydrillgrssa.z3.web.core.windows.net/\",\"blob\":\"https://ecydrillgrssa.blob.core.windows.net/\",\"queue\":\"https://ecydrillgrssa.queue.core.windows.net/\",\"table\":\"https://ecydrillgrssa.table.core.windows.net/\",\"file\":\"https://ecydrillgrssa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/ecystorageaccount\",\"name\":\"ecystorageaccount\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T04:23:52.8689927Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T04:23:52.8689927Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T04:23:52.7940184Z\",\"primaryEndpoints\":{\"dfs\":\"https://ecystorageaccount.dfs.core.windows.net/\",\"web\":\"https://ecystorageaccount.z3.web.core.windows.net/\",\"blob\":\"https://ecystorageaccount.blob.core.windows.net/\",\"queue\":\"https://ecystorageaccount.queue.core.windows.net/\",\"table\":\"https://ecystorageaccount.table.core.windows.net/\",\"file\":\"https://ecystorageaccount.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://ecystorageaccount-secondary.dfs.core.windows.net/\",\"web\":\"https://ecystorageaccount-secondary.z3.web.core.windows.net/\",\"blob\":\"https://ecystorageaccount-secondary.blob.core.windows.net/\",\"queue\":\"https://ecystorageaccount-secondary.queue.core.windows.net/\",\"table\":\"https://ecystorageaccount-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ECYZoneDownDrill/providers/Microsoft.Storage/storageAccounts/ecyzonedowndrilldiag\",\"name\":\"ecyzonedowndrilldiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Owner\":\"NirajK\",\"Purpose\":\"AzDrillMercury\",\"DeleteBy\":\"12-2020\",\"Mab + Used\":\"Yes\",\"AutoShutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-26T10:28:56.0597964Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-26T10:28:56.0597964Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-11-26T10:28:55.9972889Z\",\"primaryEndpoints\":{\"blob\":\"https://ecyzonedowndrilldiag.blob.core.windows.net/\",\"queue\":\"https://ecyzonedowndrilldiag.queue.core.windows.net/\",\"table\":\"https://ecyzonedowndrilldiag.table.core.windows.net/\",\"file\":\"https://ecyzonedowndrilldiag.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/jececyblobstorage\",\"name\":\"jececyblobstorage\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-03T07:49:08.5314469Z\",\"key2\":\"2021-03-03T07:49:08.5314469Z\"},\"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-03-03T07:49:08.5364350Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-03T07:49:08.5364350Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-03T07:49:08.4364081Z\",\"primaryEndpoints\":{\"dfs\":\"https://jececyblobstorage.dfs.core.windows.net/\",\"web\":\"https://jececyblobstorage.z3.web.core.windows.net/\",\"blob\":\"https://jececyblobstorage.blob.core.windows.net/\",\"queue\":\"https://jececyblobstorage.queue.core.windows.net/\",\"table\":\"https://jececyblobstorage.table.core.windows.net/\",\"file\":\"https://jececyblobstorage.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://jececyblobstorage-secondary.dfs.core.windows.net/\",\"web\":\"https://jececyblobstorage-secondary.z3.web.core.windows.net/\",\"blob\":\"https://jececyblobstorage-secondary.blob.core.windows.net/\",\"queue\":\"https://jececyblobstorage-secondary.queue.core.windows.net/\",\"table\":\"https://jececyblobstorage-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgECY-otds-rraj/providers/Microsoft.Storage/storageAccounts/l8vecypod01otds1\",\"name\":\"l8vecypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-24T13:53:00.1356648Z\",\"key2\":\"2021-06-24T13:53:00.1356648Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-24T13:53:00.1513237Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-24T13:53:00.1513237Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-24T13:53:00.0575779Z\",\"primaryEndpoints\":{\"dfs\":\"https://l8vecypod01otds1.dfs.core.windows.net/\",\"web\":\"https://l8vecypod01otds1.z3.web.core.windows.net/\",\"blob\":\"https://l8vecypod01otds1.blob.core.windows.net/\",\"queue\":\"https://l8vecypod01otds1.queue.core.windows.net/\",\"table\":\"https://l8vecypod01otds1.table.core.windows.net/\",\"file\":\"https://l8vecypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://l8vecypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://l8vecypod01otds1-secondary.z3.web.core.windows.net/\",\"blob\":\"https://l8vecypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://l8vecypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://l8vecypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MadhuDeRGECY/providers/Microsoft.Storage/storageAccounts/madhudesa\",\"name\":\"madhudesa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Auto + Shutdown\":\"No\",\"MAB Used\":\"yes\",\"Owner\":\"madhude\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-07T13:51:39.4829788Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-07T13:51:39.4829788Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-07T13:51:39.4129763Z\",\"primaryEndpoints\":{\"dfs\":\"https://madhudesa.dfs.core.windows.net/\",\"web\":\"https://madhudesa.z3.web.core.windows.net/\",\"blob\":\"https://madhudesa.blob.core.windows.net/\",\"queue\":\"https://madhudesa.queue.core.windows.net/\",\"table\":\"https://madhudesa.table.core.windows.net/\",\"file\":\"https://madhudesa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://madhudesa-secondary.dfs.core.windows.net/\",\"web\":\"https://madhudesa-secondary.z3.web.core.windows.net/\",\"blob\":\"https://madhudesa-secondary.blob.core.windows.net/\",\"queue\":\"https://madhudesa-secondary.queue.core.windows.net/\",\"table\":\"https://madhudesa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.Storage/storageAccounts/nsnecypod01otds1\",\"name\":\"nsnecypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-01T04:49:06.1945777Z\",\"key2\":\"2021-06-01T04:49:06.1945777Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-01T04:49:06.1996080Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-01T04:49:06.1996080Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-01T04:49:06.1045988Z\",\"primaryEndpoints\":{\"dfs\":\"https://nsnecypod01otds1.dfs.core.windows.net/\",\"web\":\"https://nsnecypod01otds1.z3.web.core.windows.net/\",\"blob\":\"https://nsnecypod01otds1.blob.core.windows.net/\",\"queue\":\"https://nsnecypod01otds1.queue.core.windows.net/\",\"table\":\"https://nsnecypod01otds1.table.core.windows.net/\",\"file\":\"https://nsnecypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://nsnecypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://nsnecypod01otds1-secondary.z3.web.core.windows.net/\",\"blob\":\"https://nsnecypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://nsnecypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://nsnecypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/orspoctesting\",\"name\":\"orspoctesting\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-06T04:31:09.7521026Z\",\"key2\":\"2021-03-06T04:31:09.7521026Z\"},\"privateEndpointConnections\":[],\"azureFilesIdentityBasedAuthentication\":{\"directoryServiceOptions\":\"None\"},\"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-03-06T04:31:09.7570709Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-06T04:31:09.7570709Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Cool\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-06T04:31:09.6720194Z\",\"primaryEndpoints\":{\"dfs\":\"https://orspoctesting.dfs.core.windows.net/\",\"web\":\"https://orspoctesting.z3.web.core.windows.net/\",\"blob\":\"https://orspoctesting.blob.core.windows.net/\",\"queue\":\"https://orspoctesting.queue.core.windows.net/\",\"table\":\"https://orspoctesting.table.core.windows.net/\",\"file\":\"https://orspoctesting.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://orspoctesting-secondary.dfs.core.windows.net/\",\"web\":\"https://orspoctesting-secondary.z3.web.core.windows.net/\",\"blob\":\"https://orspoctesting-secondary.blob.core.windows.net/\",\"queue\":\"https://orspoctesting-secondary.queue.core.windows.net/\",\"table\":\"https://orspoctesting-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/orspoctestingdest\",\"name\":\"orspoctestingdest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-09T06:26:39.5968708Z\",\"key2\":\"2021-03-09T06:26:39.5968708Z\"},\"privateEndpointConnections\":[],\"azureFilesIdentityBasedAuthentication\":{\"directoryServiceOptions\":\"None\"},\"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-03-09T06:26:39.5968708Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-09T06:26:39.5968708Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Cool\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-09T06:26:39.5068865Z\",\"primaryEndpoints\":{\"dfs\":\"https://orspoctestingdest.dfs.core.windows.net/\",\"web\":\"https://orspoctestingdest.z3.web.core.windows.net/\",\"blob\":\"https://orspoctestingdest.blob.core.windows.net/\",\"queue\":\"https://orspoctestingdest.queue.core.windows.net/\",\"table\":\"https://orspoctestingdest.table.core.windows.net/\",\"file\":\"https://orspoctestingdest.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://orspoctestingdest-secondary.dfs.core.windows.net/\",\"web\":\"https://orspoctestingdest-secondary.z3.web.core.windows.net/\",\"blob\":\"https://orspoctestingdest-secondary.blob.core.windows.net/\",\"queue\":\"https://orspoctestingdest-secondary.queue.core.windows.net/\",\"table\":\"https://orspoctestingdest-secondary.table.core.windows.net/\"}}},{\"identity\":{\"principalId\":\"418d4788-f9d3-4a7e-aed7-3aaa249aa658\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"systemAssigned\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/surraiecyrg/providers/Microsoft.Storage/storageAccounts/surraitestaccount\",\"name\":\"surraitestaccount\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"allowSharedKeyAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"keyvaultproperties\":{\"currentVersionedKeyIdentifier\":\"https://surraikeyvaultecy1.vault.azure.net/keys/key1/551fbe56fbe640689ba3e2c9b0b516ca\",\"lastKeyRotationTimestamp\":\"2021-01-24T10:49:46.1829222Z\",\"currentVersionedKeyExpirationTimestamp\":\"1970-01-01T00:00:00.0000000Z\",\"keyvaulturi\":\"https://surraikeyvaultecy1.vault.azure.net\",\"keyname\":\"key1\",\"keyversion\":\"\"},\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-24T10:45:18.7603216Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-24T10:45:18.7603216Z\"}},\"keySource\":\"Microsoft.Keyvault\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-24T10:45:18.7103468Z\",\"primaryEndpoints\":{\"dfs\":\"https://surraitestaccount.dfs.core.windows.net/\",\"web\":\"https://surraitestaccount.z3.web.core.windows.net/\",\"blob\":\"https://surraitestaccount.blob.core.windows.net/\",\"queue\":\"https://surraitestaccount.queue.core.windows.net/\",\"table\":\"https://surraitestaccount.table.core.windows.net/\",\"file\":\"https://surraitestaccount.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GeethasRg1/providers/Microsoft.Storage/storageAccounts/toiecypod01otds1\",\"name\":\"toiecypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-16T14:01:33.2474122Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-16T14:01:33.2474122Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-16T14:01:33.1623954Z\",\"primaryEndpoints\":{\"dfs\":\"https://toiecypod01otds1.dfs.core.windows.net/\",\"web\":\"https://toiecypod01otds1.z3.web.core.windows.net/\",\"blob\":\"https://toiecypod01otds1.blob.core.windows.net/\",\"queue\":\"https://toiecypod01otds1.queue.core.windows.net/\",\"table\":\"https://toiecypod01otds1.table.core.windows.net/\",\"file\":\"https://toiecypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://toiecypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://toiecypod01otds1-secondary.z3.web.core.windows.net/\",\"blob\":\"https://toiecypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://toiecypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://toiecypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-rg/providers/Microsoft.Storage/storageAccounts/trrecypod01otds1\",\"name\":\"trrecypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-06T14:24:47.3550241Z\",\"key2\":\"2021-07-06T14:24:47.3550241Z\"},\"privateEndpointConnections\":[],\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-06T14:24:47.3706243Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-06T14:24:47.3706243Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-06T14:24:47.2768756Z\",\"primaryEndpoints\":{\"dfs\":\"https://trrecypod01otds1.dfs.core.windows.net/\",\"web\":\"https://trrecypod01otds1.z3.web.core.windows.net/\",\"blob\":\"https://trrecypod01otds1.blob.core.windows.net/\",\"queue\":\"https://trrecypod01otds1.queue.core.windows.net/\",\"table\":\"https://trrecypod01otds1.table.core.windows.net/\",\"file\":\"https://trrecypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://trrecypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://trrecypod01otds1-secondary.z3.web.core.windows.net/\",\"blob\":\"https://trrecypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://trrecypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://trrecypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zakrgecy/providers/Microsoft.Storage/storageAccounts/zaksaecy01\",\"name\":\"zaksaecy01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T23:00:09.6202014Z\",\"key2\":\"2021-02-25T23:00:09.6202014Z\"},\"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-02-25T23:00:09.6252056Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T23:00:09.6252056Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T23:00:09.5502016Z\",\"primaryEndpoints\":{\"dfs\":\"https://zaksaecy01.dfs.core.windows.net/\",\"web\":\"https://zaksaecy01.z3.web.core.windows.net/\",\"blob\":\"https://zaksaecy01.blob.core.windows.net/\",\"queue\":\"https://zaksaecy01.queue.core.windows.net/\",\"table\":\"https://zaksaecy01.table.core.windows.net/\",\"file\":\"https://zaksaecy01.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://zaksaecy01-secondary.dfs.core.windows.net/\",\"web\":\"https://zaksaecy01-secondary.z3.web.core.windows.net/\",\"blob\":\"https://zaksaecy01-secondary.blob.core.windows.net/\",\"queue\":\"https://zaksaecy01-secondary.queue.core.windows.net/\",\"table\":\"https://zaksaecy01-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Storage/storageAccounts/zrsbugbashdiag224\",\"name\":\"zrsbugbashdiag224\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Owner\":\"suresht\",\"Purpose\":\"ZRSBugBash\",\"DeleteBy\":\"07-2020\",\"Mab + Used\":\"Yes\",\"AutoShutdown\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-10T00:05:15.6652372Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-10T00:05:15.6652372Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-10T00:05:15.6183701Z\",\"primaryEndpoints\":{\"blob\":\"https://zrsbugbashdiag224.blob.core.windows.net/\",\"queue\":\"https://zrsbugbashdiag224.queue.core.windows.net/\",\"table\":\"https://zrsbugbashdiag224.table.core.windows.net/\",\"file\":\"https://zrsbugbashdiag224.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ZRSBugBash/providers/Microsoft.Storage/storageAccounts/zrsbugbashdiag449\",\"name\":\"zrsbugbashdiag449\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Purpose\":\" + Testing\",\"MAB Used\":\"Yes\",\"Owner\":\"ZaKinkh\",\"DeleteBy\":\"08-2020\",\"AutoShutdown\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-10T00:03:41.2729306Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-10T00:03:41.2729306Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-10T00:03:41.2104297Z\",\"primaryEndpoints\":{\"blob\":\"https://zrsbugbashdiag449.blob.core.windows.net/\",\"queue\":\"https://zrsbugbashdiag449.queue.core.windows.net/\",\"table\":\"https://zrsbugbashdiag449.table.core.windows.net/\",\"file\":\"https://zrsbugbashdiag449.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Storage/storageAccounts/0viccypod01otds1\",\"name\":\"0viccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-27T09:30:50.5701752Z\",\"key2\":\"2021-04-27T09:30:50.5701752Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-27T09:30:50.5801489Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-27T09:30:50.5801489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-27T09:30:50.4701514Z\",\"primaryEndpoints\":{\"dfs\":\"https://0viccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://0viccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://0viccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://0viccypod01otds1.queue.core.windows.net/\",\"table\":\"https://0viccypod01otds1.table.core.windows.net/\",\"file\":\"https://0viccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://0viccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://0viccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://0viccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://0viccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://0viccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.Storage/storageAccounts/27gccypod01otds1\",\"name\":\"27gccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-29T05:19:00.2252697Z\",\"key2\":\"2021-06-29T05:19:00.2252697Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-29T05:19:00.2252697Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-29T05:19:00.2252697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-29T05:19:00.1315508Z\",\"primaryEndpoints\":{\"dfs\":\"https://27gccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://27gccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://27gccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://27gccypod01otds1.queue.core.windows.net/\",\"table\":\"https://27gccypod01otds1.table.core.windows.net/\",\"file\":\"https://27gccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://27gccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://27gccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://27gccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://27gccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://27gccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vityagi-2/providers/Microsoft.Storage/storageAccounts/3qfccypod01otds1\",\"name\":\"3qfccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-14T09:43:07.1236343Z\",\"key2\":\"2021-06-14T09:43:07.1236343Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-14T09:43:07.1286095Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-14T09:43:07.1286095Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-14T09:43:07.0286480Z\",\"primaryEndpoints\":{\"dfs\":\"https://3qfccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://3qfccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://3qfccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://3qfccypod01otds1.queue.core.windows.net/\",\"table\":\"https://3qfccypod01otds1.table.core.windows.net/\",\"file\":\"https://3qfccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://3qfccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://3qfccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://3qfccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://3qfccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://3qfccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-snapshot-rg/providers/Microsoft.Storage/storageAccounts/5owccypod01otds1\",\"name\":\"5owccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-10T09:00:57.3068926Z\",\"key2\":\"2021-03-10T09:00:57.3068926Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-10T09:00:57.3068926Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-10T09:00:57.3068926Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-10T09:00:57.1968955Z\",\"primaryEndpoints\":{\"dfs\":\"https://5owccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://5owccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://5owccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://5owccypod01otds1.queue.core.windows.net/\",\"table\":\"https://5owccypod01otds1.table.core.windows.net/\",\"file\":\"https://5owccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://5owccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://5owccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://5owccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://5owccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://5owccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/7k0ccypod01otds1\",\"name\":\"7k0ccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-06T15:12:31.9474496Z\",\"key2\":\"2021-07-06T15:12:31.9474496Z\"},\"privateEndpointConnections\":[],\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-06T15:12:31.9474496Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-06T15:12:31.9474496Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-06T15:12:31.8536602Z\",\"primaryEndpoints\":{\"dfs\":\"https://7k0ccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://7k0ccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://7k0ccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://7k0ccypod01otds1.queue.core.windows.net/\",\"table\":\"https://7k0ccypod01otds1.table.core.windows.net/\",\"file\":\"https://7k0ccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://7k0ccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://7k0ccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://7k0ccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://7k0ccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://7k0ccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABCTest/providers/Microsoft.Storage/storageAccounts/9jbccypod01otds1\",\"name\":\"9jbccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-11T02:41:53.1919604Z\",\"key2\":\"2021-04-11T02:41:53.1919604Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-11T02:41:53.1969342Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-11T02:41:53.1969342Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-11T02:41:53.0869139Z\",\"primaryEndpoints\":{\"dfs\":\"https://9jbccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://9jbccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://9jbccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://9jbccypod01otds1.queue.core.windows.net/\",\"table\":\"https://9jbccypod01otds1.table.core.windows.net/\",\"file\":\"https://9jbccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://9jbccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://9jbccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://9jbccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://9jbccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://9jbccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/ajithbbsa\",\"name\":\"ajithbbsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"Owner\":\"ajithkr\",\"DeleteBy\":\"12-2021\",\"Purpose\":\"BugBash\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T05:08:49.2180848Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T05:08:49.2180848Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T05:08:49.1530368Z\",\"primaryEndpoints\":{\"dfs\":\"https://ajithbbsa.dfs.core.windows.net/\",\"web\":\"https://ajithbbsa.z2.web.core.windows.net/\",\"blob\":\"https://ajithbbsa.blob.core.windows.net/\",\"queue\":\"https://ajithbbsa.queue.core.windows.net/\",\"table\":\"https://ajithbbsa.table.core.windows.net/\",\"file\":\"https://ajithbbsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Storage/storageAccounts/archivehanadisk\",\"name\":\"archivehanadisk\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-29T00:41:38.6356700Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T00:41:38.6356700Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T00:41:38.5456544Z\",\"primaryEndpoints\":{\"dfs\":\"https://archivehanadisk.dfs.core.windows.net/\",\"web\":\"https://archivehanadisk.z2.web.core.windows.net/\",\"blob\":\"https://archivehanadisk.blob.core.windows.net/\",\"queue\":\"https://archivehanadisk.queue.core.windows.net/\",\"table\":\"https://archivehanadisk.table.core.windows.net/\",\"file\":\"https://archivehanadisk.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/arvindbbbugbashsa1\",\"name\":\"arvindbbbugbashsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:15:01.0720071Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:15:01.0720071Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T22:15:00.9920329Z\",\"primaryEndpoints\":{\"dfs\":\"https://arvindbbbugbashsa1.dfs.core.windows.net/\",\"web\":\"https://arvindbbbugbashsa1.z2.web.core.windows.net/\",\"blob\":\"https://arvindbbbugbashsa1.blob.core.windows.net/\",\"queue\":\"https://arvindbbbugbashsa1.queue.core.windows.net/\",\"table\":\"https://arvindbbbugbashsa1.table.core.windows.net/\",\"file\":\"https://arvindbbbugbashsa1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/arvindbbbugbashsa2\",\"name\":\"arvindbbbugbashsa2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Network/virtualNetworks/chandrikargvnet654/subnets/default\",\"action\":\"Allow\",\"state\":\"NetworkSourceDeleted\"}],\"ipRules\":[],\"defaultAction\":\"Deny\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:17:04.4020584Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:17:04.4020584Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T22:17:04.3370355Z\",\"primaryEndpoints\":{\"dfs\":\"https://arvindbbbugbashsa2.dfs.core.windows.net/\",\"web\":\"https://arvindbbbugbashsa2.z2.web.core.windows.net/\",\"blob\":\"https://arvindbbbugbashsa2.blob.core.windows.net/\",\"queue\":\"https://arvindbbbugbashsa2.queue.core.windows.net/\",\"table\":\"https://arvindbbbugbashsa2.table.core.windows.net/\",\"file\":\"https://arvindbbbugbashsa2.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/arvindbubbashtestsa3\",\"name\":\"arvindbubbashtestsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Network/virtualNetworks/chandrikargvnet654/subnets/default\",\"action\":\"Allow\",\"state\":\"NetworkSourceDeleted\"}],\"ipRules\":[],\"defaultAction\":\"Deny\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T23:30:47.5937794Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T23:30:47.5937794Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T23:30:47.5187992Z\",\"primaryEndpoints\":{\"dfs\":\"https://arvindbubbashtestsa3.dfs.core.windows.net/\",\"web\":\"https://arvindbubbashtestsa3.z2.web.core.windows.net/\",\"blob\":\"https://arvindbubbashtestsa3.blob.core.windows.net/\",\"queue\":\"https://arvindbubbashtestsa3.queue.core.windows.net/\",\"table\":\"https://arvindbubbashtestsa3.table.core.windows.net/\",\"file\":\"https://arvindbubbashtestsa3.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Storage/storageAccounts/arvindimmutabletest\",\"name\":\"arvindimmutabletest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-25T07:50:22.9370522Z\",\"key2\":\"2021-03-25T07:50:22.9370522Z\"},\"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-03-25T07:50:22.9420582Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-25T07:50:22.9420582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-25T07:50:22.8420668Z\",\"primaryEndpoints\":{\"dfs\":\"https://arvindimmutabletest.dfs.core.windows.net/\",\"web\":\"https://arvindimmutabletest.z2.web.core.windows.net/\",\"blob\":\"https://arvindimmutabletest.blob.core.windows.net/\",\"queue\":\"https://arvindimmutabletest.queue.core.windows.net/\",\"table\":\"https://arvindimmutabletest.table.core.windows.net/\",\"file\":\"https://arvindimmutabletest.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DppPostgresTestingCcy/providers/Microsoft.Storage/storageAccounts/asmittsa\",\"name\":\"asmittsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-06T08:50:21.5960537Z\",\"key2\":\"2021-05-06T08:50:21.5960537Z\"},\"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-05-06T08:50:21.5960537Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-06T08:50:21.5960537Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-06T08:50:21.4910332Z\",\"primaryEndpoints\":{\"dfs\":\"https://asmittsa.dfs.core.windows.net/\",\"web\":\"https://asmittsa.z2.web.core.windows.net/\",\"blob\":\"https://asmittsa.blob.core.windows.net/\",\"queue\":\"https://asmittsa.queue.core.windows.net/\",\"table\":\"https://asmittsa.table.core.windows.net/\",\"file\":\"https://asmittsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://asmittsa-secondary.dfs.core.windows.net/\",\"web\":\"https://asmittsa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://asmittsa-secondary.blob.core.windows.net/\",\"queue\":\"https://asmittsa-secondary.queue.core.windows.net/\",\"table\":\"https://asmittsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/blobbackup01viharip\",\"name\":\"blobbackup01viharip\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T23:26:16.9268625Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T23:26:16.9268625Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T23:26:16.8668170Z\",\"primaryEndpoints\":{\"dfs\":\"https://blobbackup01viharip.dfs.core.windows.net/\",\"web\":\"https://blobbackup01viharip.z2.web.core.windows.net/\",\"blob\":\"https://blobbackup01viharip.blob.core.windows.net/\",\"queue\":\"https://blobbackup01viharip.queue.core.windows.net/\",\"table\":\"https://blobbackup01viharip.table.core.windows.net/\",\"file\":\"https://blobbackup01viharip.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/blobbackupviharip01\",\"name\":\"blobbackupviharip01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T22:59:42.3783578Z\",\"key2\":\"2021-02-25T22:59:42.3783578Z\"},\"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-02-25T22:59:42.3833629Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T22:59:42.3833629Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T22:59:42.2833615Z\",\"primaryEndpoints\":{\"dfs\":\"https://blobbackupviharip01.dfs.core.windows.net/\",\"web\":\"https://blobbackupviharip01.z2.web.core.windows.net/\",\"blob\":\"https://blobbackupviharip01.blob.core.windows.net/\",\"queue\":\"https://blobbackupviharip01.queue.core.windows.net/\",\"table\":\"https://blobbackupviharip01.table.core.windows.net/\",\"file\":\"https://blobbackupviharip01.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/bubbashsa\",\"name\":\"bubbashsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T03:24:28.0013663Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T03:24:28.0013663Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T03:24:27.9211973Z\",\"primaryEndpoints\":{\"dfs\":\"https://bubbashsa.dfs.core.windows.net/\",\"web\":\"https://bubbashsa.z2.web.core.windows.net/\",\"blob\":\"https://bubbashsa.blob.core.windows.net/\",\"queue\":\"https://bubbashsa.queue.core.windows.net/\",\"table\":\"https://bubbashsa.table.core.windows.net/\",\"file\":\"https://bubbashsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://bubbashsa-secondary.dfs.core.windows.net/\",\"web\":\"https://bubbashsa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://bubbashsa-secondary.blob.core.windows.net/\",\"queue\":\"https://bubbashsa-secondary.queue.core.windows.net/\",\"table\":\"https://bubbashsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/bugbashstore1\",\"name\":\"bugbashstore1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T21:43:17.5871784Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T21:43:17.5871784Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T21:43:17.5321841Z\",\"primaryEndpoints\":{\"dfs\":\"https://bugbashstore1.dfs.core.windows.net/\",\"web\":\"https://bugbashstore1.z2.web.core.windows.net/\",\"blob\":\"https://bugbashstore1.blob.core.windows.net/\",\"queue\":\"https://bugbashstore1.queue.core.windows.net/\",\"table\":\"https://bugbashstore1.table.core.windows.net/\",\"file\":\"https://bugbashstore1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://bugbashstore1-secondary.dfs.core.windows.net/\",\"web\":\"https://bugbashstore1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://bugbashstore1-secondary.blob.core.windows.net/\",\"queue\":\"https://bugbashstore1-secondary.queue.core.windows.net/\",\"table\":\"https://bugbashstore1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/c12ccypod01otds1\",\"name\":\"c12ccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-30T09:19:03.5849636Z\",\"key2\":\"2021-06-30T09:19:03.5849636Z\"},\"privateEndpointConnections\":[],\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T09:19:03.5849636Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T09:19:03.5849636Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-30T09:19:03.4912254Z\",\"primaryEndpoints\":{\"dfs\":\"https://c12ccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://c12ccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://c12ccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://c12ccypod01otds1.queue.core.windows.net/\",\"table\":\"https://c12ccypod01otds1.table.core.windows.net/\",\"file\":\"https://c12ccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://c12ccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://c12ccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://c12ccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://c12ccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://c12ccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/ccystorage\",\"name\":\"ccystorage\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T04:56:00.6841156Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T04:56:00.6841156Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T04:56:00.6141243Z\",\"primaryEndpoints\":{\"dfs\":\"https://ccystorage.dfs.core.windows.net/\",\"web\":\"https://ccystorage.z2.web.core.windows.net/\",\"blob\":\"https://ccystorage.blob.core.windows.net/\",\"queue\":\"https://ccystorage.queue.core.windows.net/\",\"table\":\"https://ccystorage.table.core.windows.net/\",\"file\":\"https://ccystorage.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://ccystorage-secondary.dfs.core.windows.net/\",\"web\":\"https://ccystorage-secondary.z2.web.core.windows.net/\",\"blob\":\"https://ccystorage-secondary.blob.core.windows.net/\",\"queue\":\"https://ccystorage-secondary.queue.core.windows.net/\",\"table\":\"https://ccystorage-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/chmaribugbashaccount\",\"name\":\"chmaribugbashaccount\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T23:28:32.9139397Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T23:28:32.9139397Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-19T23:28:32.8389337Z\",\"primaryEndpoints\":{\"dfs\":\"https://chmaribugbashaccount.dfs.core.windows.net/\",\"web\":\"https://chmaribugbashaccount.z2.web.core.windows.net/\",\"blob\":\"https://chmaribugbashaccount.blob.core.windows.net/\",\"queue\":\"https://chmaribugbashaccount.queue.core.windows.net/\",\"table\":\"https://chmaribugbashaccount.table.core.windows.net/\",\"file\":\"https://chmaribugbashaccount.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://chmaribugbashaccount-secondary.dfs.core.windows.net/\",\"web\":\"https://chmaribugbashaccount-secondary.z2.web.core.windows.net/\",\"blob\":\"https://chmaribugbashaccount-secondary.blob.core.windows.net/\",\"queue\":\"https://chmaribugbashaccount-secondary.queue.core.windows.net/\",\"table\":\"https://chmaribugbashaccount-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/chmaribugbashblobbackup\",\"name\":\"chmaribugbashblobbackup\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T23:31:45.1890700Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T23:31:45.1890700Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-19T23:31:45.0990721Z\",\"primaryEndpoints\":{\"dfs\":\"https://chmaribugbashblobbackup.dfs.core.windows.net/\",\"web\":\"https://chmaribugbashblobbackup.z2.web.core.windows.net/\",\"blob\":\"https://chmaribugbashblobbackup.blob.core.windows.net/\",\"queue\":\"https://chmaribugbashblobbackup.queue.core.windows.net/\",\"table\":\"https://chmaribugbashblobbackup.table.core.windows.net/\",\"file\":\"https://chmaribugbashblobbackup.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://chmaribugbashblobbackup-secondary.dfs.core.windows.net/\",\"web\":\"https://chmaribugbashblobbackup-secondary.z2.web.core.windows.net/\",\"blob\":\"https://chmaribugbashblobbackup-secondary.blob.core.windows.net/\",\"queue\":\"https://chmaribugbashblobbackup-secondary.queue.core.windows.net/\",\"table\":\"https://chmaribugbashblobbackup-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.Storage/storageAccounts/clibugbashsa\",\"name\":\"clibugbashsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-30T13:33:20.9795186Z\",\"key2\":\"2021-05-30T13:33:20.9795186Z\"},\"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-05-30T13:33:20.9844885Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-30T13:33:20.9844885Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-30T13:33:20.8744904Z\",\"primaryEndpoints\":{\"dfs\":\"https://clibugbashsa.dfs.core.windows.net/\",\"web\":\"https://clibugbashsa.z2.web.core.windows.net/\",\"blob\":\"https://clibugbashsa.blob.core.windows.net/\",\"queue\":\"https://clibugbashsa.queue.core.windows.net/\",\"table\":\"https://clibugbashsa.table.core.windows.net/\",\"file\":\"https://clibugbashsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://clibugbashsa-secondary.dfs.core.windows.net/\",\"web\":\"https://clibugbashsa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://clibugbashsa-secondary.blob.core.windows.net/\",\"queue\":\"https://clibugbashsa-secondary.queue.core.windows.net/\",\"table\":\"https://clibugbashsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dchandr/providers/Microsoft.Storage/storageAccounts/dchandrrestoreasfile\",\"name\":\"dchandrrestoreasfile\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-24T07:34:07.2833967Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-24T07:34:07.2833967Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Cool\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-24T07:34:07.2365663Z\",\"primaryEndpoints\":{\"dfs\":\"https://dchandrrestoreasfile.dfs.core.windows.net/\",\"web\":\"https://dchandrrestoreasfile.z2.web.core.windows.net/\",\"blob\":\"https://dchandrrestoreasfile.blob.core.windows.net/\",\"queue\":\"https://dchandrrestoreasfile.queue.core.windows.net/\",\"table\":\"https://dchandrrestoreasfile.table.core.windows.net/\",\"file\":\"https://dchandrrestoreasfile.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ag-rg-disk/providers/Microsoft.Storage/storageAccounts/drjccypod01otds1\",\"name\":\"drjccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-29T10:31:26.4864165Z\",\"key2\":\"2021-06-29T10:31:26.4864165Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-29T10:31:26.5020611Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-29T10:31:26.5020611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-29T10:31:26.3926934Z\",\"primaryEndpoints\":{\"dfs\":\"https://drjccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://drjccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://drjccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://drjccypod01otds1.queue.core.windows.net/\",\"table\":\"https://drjccypod01otds1.table.core.windows.net/\",\"file\":\"https://drjccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://drjccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://drjccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://drjccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://drjccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://drjccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ABC/providers/Microsoft.Storage/storageAccounts/fvlccypod01otds1\",\"name\":\"fvlccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-30T07:30:40.0649759Z\",\"key2\":\"2021-06-30T07:30:40.0649759Z\"},\"privateEndpointConnections\":[],\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T07:30:40.0649759Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T07:30:40.0649759Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-30T07:30:39.9868704Z\",\"primaryEndpoints\":{\"dfs\":\"https://fvlccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://fvlccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://fvlccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://fvlccypod01otds1.queue.core.windows.net/\",\"table\":\"https://fvlccypod01otds1.table.core.windows.net/\",\"file\":\"https://fvlccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://fvlccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://fvlccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://fvlccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://fvlccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://fvlccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ag-west-us-rg/providers/Microsoft.Storage/storageAccounts/h7uccypod01otds1\",\"name\":\"h7uccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-07-04T14:31:40.6122434Z\",\"key2\":\"2021-07-04T14:31:40.6122434Z\"},\"privateEndpointConnections\":[],\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-04T14:31:40.6122434Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-07-04T14:31:40.6122434Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-07-04T14:31:40.5341172Z\",\"primaryEndpoints\":{\"dfs\":\"https://h7uccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://h7uccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://h7uccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://h7uccypod01otds1.queue.core.windows.net/\",\"table\":\"https://h7uccypod01otds1.table.core.windows.net/\",\"file\":\"https://h7uccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://h7uccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://h7uccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://h7uccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://h7uccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://h7uccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/hnsenabledstorage\",\"name\":\"hnsenabledstorage\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"isHnsEnabled\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T02:51:42.7401252Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T02:51:42.7401252Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T02:51:42.6750674Z\",\"primaryEndpoints\":{\"dfs\":\"https://hnsenabledstorage.dfs.core.windows.net/\",\"web\":\"https://hnsenabledstorage.z2.web.core.windows.net/\",\"blob\":\"https://hnsenabledstorage.blob.core.windows.net/\",\"queue\":\"https://hnsenabledstorage.queue.core.windows.net/\",\"table\":\"https://hnsenabledstorage.table.core.windows.net/\",\"file\":\"https://hnsenabledstorage.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hnsenabledstorage-secondary.dfs.core.windows.net/\",\"web\":\"https://hnsenabledstorage-secondary.z2.web.core.windows.net/\",\"blob\":\"https://hnsenabledstorage-secondary.blob.core.windows.net/\",\"queue\":\"https://hnsenabledstorage-secondary.queue.core.windows.net/\",\"table\":\"https://hnsenabledstorage-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/jecblobbackup\",\"name\":\"jecblobbackup\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-02-11T00:42:04.1337223Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-11T00:42:04.1337223Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-11T00:42:04.0637675Z\",\"primaryEndpoints\":{\"dfs\":\"https://jecblobbackup.dfs.core.windows.net/\",\"web\":\"https://jecblobbackup.z2.web.core.windows.net/\",\"blob\":\"https://jecblobbackup.blob.core.windows.net/\",\"queue\":\"https://jecblobbackup.queue.core.windows.net/\",\"table\":\"https://jecblobbackup.table.core.windows.net/\",\"file\":\"https://jecblobbackup.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://jecblobbackup-secondary.dfs.core.windows.net/\",\"web\":\"https://jecblobbackup-secondary.z2.web.core.windows.net/\",\"blob\":\"https://jecblobbackup-secondary.blob.core.windows.net/\",\"queue\":\"https://jecblobbackup-secondary.queue.core.windows.net/\",\"table\":\"https://jecblobbackup-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/jecblobbackup2\",\"name\":\"jecblobbackup2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-02-18T00:44:34.2067541Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-18T00:44:34.2067541Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-18T00:44:34.1124723Z\",\"primaryEndpoints\":{\"dfs\":\"https://jecblobbackup2.dfs.core.windows.net/\",\"web\":\"https://jecblobbackup2.z2.web.core.windows.net/\",\"blob\":\"https://jecblobbackup2.blob.core.windows.net/\",\"queue\":\"https://jecblobbackup2.queue.core.windows.net/\",\"table\":\"https://jecblobbackup2.table.core.windows.net/\",\"file\":\"https://jecblobbackup2.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://jecblobbackup2-secondary.dfs.core.windows.net/\",\"web\":\"https://jecblobbackup2-secondary.z2.web.core.windows.net/\",\"blob\":\"https://jecblobbackup2-secondary.blob.core.windows.net/\",\"queue\":\"https://jecblobbackup2-secondary.queue.core.windows.net/\",\"table\":\"https://jecblobbackup2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/jecstorageaccount1\",\"name\":\"jecstorageaccount1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:27:47.4941749Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:27:47.4941749Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T22:27:47.4191958Z\",\"primaryEndpoints\":{\"dfs\":\"https://jecstorageaccount1.dfs.core.windows.net/\",\"web\":\"https://jecstorageaccount1.z2.web.core.windows.net/\",\"blob\":\"https://jecstorageaccount1.blob.core.windows.net/\",\"queue\":\"https://jecstorageaccount1.queue.core.windows.net/\",\"table\":\"https://jecstorageaccount1.table.core.windows.net/\",\"file\":\"https://jecstorageaccount1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://jecstorageaccount1-secondary.dfs.core.windows.net/\",\"web\":\"https://jecstorageaccount1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://jecstorageaccount1-secondary.blob.core.windows.net/\",\"queue\":\"https://jecstorageaccount1-secondary.queue.core.windows.net/\",\"table\":\"https://jecstorageaccount1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/kc8ccypod01otds1\",\"name\":\"kc8ccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-17T10:34:08.2040079Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-17T10:34:08.2040079Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-17T10:34:08.1339933Z\",\"primaryEndpoints\":{\"dfs\":\"https://kc8ccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://kc8ccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://kc8ccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://kc8ccypod01otds1.queue.core.windows.net/\",\"table\":\"https://kc8ccypod01otds1.table.core.windows.net/\",\"file\":\"https://kc8ccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://kc8ccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://kc8ccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://kc8ccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://kc8ccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://kc8ccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/mboccypod01otds1\",\"name\":\"mboccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-23T09:28:50.9244285Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-23T09:28:50.9244285Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-23T09:28:50.8243798Z\",\"primaryEndpoints\":{\"dfs\":\"https://mboccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://mboccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://mboccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://mboccypod01otds1.queue.core.windows.net/\",\"table\":\"https://mboccypod01otds1.table.core.windows.net/\",\"file\":\"https://mboccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://mboccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://mboccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://mboccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://mboccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://mboccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/micurciosa\",\"name\":\"micurciosa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:39:34.2967735Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-12T22:39:34.2967735Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-12T22:39:34.2517789Z\",\"primaryEndpoints\":{\"dfs\":\"https://micurciosa.dfs.core.windows.net/\",\"web\":\"https://micurciosa.z2.web.core.windows.net/\",\"blob\":\"https://micurciosa.blob.core.windows.net/\",\"queue\":\"https://micurciosa.queue.core.windows.net/\",\"table\":\"https://micurciosa.table.core.windows.net/\",\"file\":\"https://micurciosa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://micurciosa-secondary.dfs.core.windows.net/\",\"web\":\"https://micurciosa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://micurciosa-secondary.blob.core.windows.net/\",\"queue\":\"https://micurciosa-secondary.queue.core.windows.net/\",\"table\":\"https://micurciosa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vityagi-2/providers/Microsoft.Storage/storageAccounts/p3iccypod01otds1\",\"name\":\"p3iccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-03T11:15:11.3723782Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-03T11:15:11.3723782Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-03T11:15:11.3023979Z\",\"primaryEndpoints\":{\"dfs\":\"https://p3iccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://p3iccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://p3iccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://p3iccypod01otds1.queue.core.windows.net/\",\"table\":\"https://p3iccypod01otds1.table.core.windows.net/\",\"file\":\"https://p3iccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://p3iccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://p3iccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://p3iccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://p3iccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://p3iccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DiskBackupOTDS/providers/Microsoft.Storage/storageAccounts/pm5ccypod01otds1\",\"name\":\"pm5ccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-15T17:44:14.1649307Z\",\"key2\":\"2021-03-15T17:44:14.1649307Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-15T17:44:14.1699289Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-15T17:44:14.1699289Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-15T17:44:14.0799055Z\",\"primaryEndpoints\":{\"dfs\":\"https://pm5ccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://pm5ccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://pm5ccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://pm5ccypod01otds1.queue.core.windows.net/\",\"table\":\"https://pm5ccypod01otds1.table.core.windows.net/\",\"file\":\"https://pm5ccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://pm5ccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://pm5ccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://pm5ccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://pm5ccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://pm5ccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/prachandsa\",\"name\":\"prachandsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T05:53:42.8222209Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T05:53:42.8222209Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T05:53:42.7421879Z\",\"primaryEndpoints\":{\"dfs\":\"https://prachandsa.dfs.core.windows.net/\",\"web\":\"https://prachandsa.z2.web.core.windows.net/\",\"blob\":\"https://prachandsa.blob.core.windows.net/\",\"queue\":\"https://prachandsa.queue.core.windows.net/\",\"table\":\"https://prachandsa.table.core.windows.net/\",\"file\":\"https://prachandsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://prachandsa-secondary.dfs.core.windows.net/\",\"web\":\"https://prachandsa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://prachandsa-secondary.blob.core.windows.net/\",\"queue\":\"https://prachandsa-secondary.queue.core.windows.net/\",\"table\":\"https://prachandsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PratikBugBashRG/providers/Microsoft.Storage/storageAccounts/pratiktmpbugbashsa\",\"name\":\"pratiktmpbugbashsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T12:55:10.0635037Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T12:55:10.0635037Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T12:55:09.9735088Z\",\"primaryEndpoints\":{\"dfs\":\"https://pratiktmpbugbashsa.dfs.core.windows.net/\",\"web\":\"https://pratiktmpbugbashsa.z2.web.core.windows.net/\",\"blob\":\"https://pratiktmpbugbashsa.blob.core.windows.net/\",\"queue\":\"https://pratiktmpbugbashsa.queue.core.windows.net/\",\"table\":\"https://pratiktmpbugbashsa.table.core.windows.net/\",\"file\":\"https://pratiktmpbugbashsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/privateendpointsa1\",\"name\":\"privateendpointsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-17T21:37:37.5283805Z\",\"key2\":\"2021-03-17T21:37:37.5283805Z\"},\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/privateendpointsa1/privateEndpointConnections/privateendpointsa1.34c9f7e8-6620-491c-877b-081890976392\",\"name\":\"privateendpointsa1.34c9f7e8-6620-491c-877b-081890976392\",\"type\":\"Microsoft.Storage/storageAccounts/privateEndpointConnections\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-Approved\",\"actionRequired\":\"None\"}}}],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"allowSharedKeyAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Deny\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T21:37:37.5333741Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-17T21:37:37.5333741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-17T21:37:37.4433720Z\",\"primaryEndpoints\":{\"dfs\":\"https://privateendpointsa1.dfs.core.windows.net/\",\"web\":\"https://privateendpointsa1.z2.web.core.windows.net/\",\"blob\":\"https://privateendpointsa1.blob.core.windows.net/\",\"queue\":\"https://privateendpointsa1.queue.core.windows.net/\",\"table\":\"https://privateendpointsa1.table.core.windows.net/\",\"file\":\"https://privateendpointsa1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://privateendpointsa1-secondary.dfs.core.windows.net/\",\"web\":\"https://privateendpointsa1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://privateendpointsa1-secondary.blob.core.windows.net/\",\"queue\":\"https://privateendpointsa1-secondary.queue.core.windows.net/\",\"table\":\"https://privateendpointsa1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/privatepreviewtest\",\"name\":\"privatepreviewtest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T08:48:00.1608671Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-19T08:48:00.1608671Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-19T08:48:00.0209071Z\",\"primaryEndpoints\":{\"dfs\":\"https://privatepreviewtest.dfs.core.windows.net/\",\"web\":\"https://privatepreviewtest.z2.web.core.windows.net/\",\"blob\":\"https://privatepreviewtest.blob.core.windows.net/\",\"queue\":\"https://privatepreviewtest.queue.core.windows.net/\",\"table\":\"https://privatepreviewtest.table.core.windows.net/\",\"file\":\"https://privatepreviewtest.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://privatepreviewtest-secondary.dfs.core.windows.net/\",\"web\":\"https://privatepreviewtest-secondary.z2.web.core.windows.net/\",\"blob\":\"https://privatepreviewtest-secondary.blob.core.windows.net/\",\"queue\":\"https://privatepreviewtest-secondary.queue.core.windows.net/\",\"table\":\"https://privatepreviewtest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-test/providers/Microsoft.Storage/storageAccounts/prnookalstac\",\"name\":\"prnookalstac\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\" + Owner\":\"prnookal\",\"Purpose\":\" Testing\",\"MABUsed\":\" Yes\",\"DeleteBy\":\"01-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-18T06:00:42.5698078Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-18T06:00:42.5698078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-18T06:00:42.5229364Z\",\"primaryEndpoints\":{\"dfs\":\"https://prnookalstac.dfs.core.windows.net/\",\"web\":\"https://prnookalstac.z2.web.core.windows.net/\",\"blob\":\"https://prnookalstac.blob.core.windows.net/\",\"queue\":\"https://prnookalstac.queue.core.windows.net/\",\"table\":\"https://prnookalstac.table.core.windows.net/\",\"file\":\"https://prnookalstac.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore01\",\"name\":\"publicpreviewccystore01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:49:06.2993675Z\",\"key2\":\"2021-02-25T03:49:06.2993675Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:06.3043657Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:06.3043657Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:49:06.2094241Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore01.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore01.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore01.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore01.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore01.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore01.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore01-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore01-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore01-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore01-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore01-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore02\",\"name\":\"publicpreviewccystore02\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:49:31.7449233Z\",\"key2\":\"2021-02-25T03:49:31.7449233Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:31.7498751Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:31.7498751Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:49:31.6549018Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore02.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore02.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore02.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore02.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore02.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore02.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore02-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore02-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore02-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore02-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore02-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore03\",\"name\":\"publicpreviewccystore03\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:49:47.1667282Z\",\"key2\":\"2021-02-25T03:49:47.1667282Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:47.1667282Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:47.1667282Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:49:47.0667319Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore03.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore03.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore03.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore03.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore03.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore03.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore03-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore03-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore03-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore03-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore03-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore04\",\"name\":\"publicpreviewccystore04\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:49:56.0382881Z\",\"key2\":\"2021-02-25T03:49:56.0382881Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:56.0432886Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:49:56.0432886Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:49:55.9683103Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore04.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore04.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore04.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore04.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore04.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore04.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore04-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore04-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore04-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore04-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore04-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore05\",\"name\":\"publicpreviewccystore05\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:50:04.3545012Z\",\"key2\":\"2021-02-25T03:50:04.3545012Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:04.3545012Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:04.3545012Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:50:04.2744781Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore05.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore05.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore05.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore05.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore05.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore05.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore05-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore05-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore05-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore05-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore05-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore06\",\"name\":\"publicpreviewccystore06\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:50:19.7038185Z\",\"key2\":\"2021-02-25T03:50:19.7038185Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:19.7087668Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:19.7087668Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:50:19.6088138Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore06.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore06.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore06.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore06.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore06.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore06.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore06-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore06-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore06-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore06-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore06-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore07\",\"name\":\"publicpreviewccystore07\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:50:29.8546927Z\",\"key2\":\"2021-02-25T03:50:29.8546927Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:29.8546927Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:29.8546927Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:50:29.7696675Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore07.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore07.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore07.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore07.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore07.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore07.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore07-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore07-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore07-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore07-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore07-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore08\",\"name\":\"publicpreviewccystore08\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:50:39.2857978Z\",\"key2\":\"2021-02-25T03:50:39.2857978Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:39.2857978Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:39.2857978Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:50:39.1798749Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore08.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore08.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore08.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore08.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore08.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore08.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore08-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore08-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore08-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore08-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore08-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore09\",\"name\":\"publicpreviewccystore09\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:50:48.7621236Z\",\"key2\":\"2021-02-25T03:50:48.7621236Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:48.7621236Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:48.7621236Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:50:48.6620686Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore09.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore09.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore09.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore09.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore09.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore09.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore09-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore09-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore09-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore09-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore09-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore10\",\"name\":\"publicpreviewccystore10\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:50:58.7521223Z\",\"key2\":\"2021-02-25T03:50:58.7521223Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:58.7521223Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:50:58.7521223Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:50:58.6671210Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore10.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore10.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore10.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore10.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore10.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore10.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore10-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore10-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore10-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore10-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore10-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore11\",\"name\":\"publicpreviewccystore11\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:51:08.2855545Z\",\"key2\":\"2021-02-25T03:51:08.2855545Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:08.2855545Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:08.2855545Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:51:08.1955777Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore11.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore11.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore11.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore11.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore11.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore11.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore11-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore11-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore11-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore11-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore11-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore12\",\"name\":\"publicpreviewccystore12\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:51:17.0510554Z\",\"key2\":\"2021-02-25T03:51:17.0510554Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:17.0560556Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:17.0560556Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:51:16.9510446Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore12.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore12.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore12.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore12.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore12.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore12.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore12-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore12-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore12-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore12-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore12-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore13\",\"name\":\"publicpreviewccystore13\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:51:25.8232973Z\",\"key2\":\"2021-02-25T03:51:25.8232973Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:25.8232973Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:25.8232973Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:51:25.7232987Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore13.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore13.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore13.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore13.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore13.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore13.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore13-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore13-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore13-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore13-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore13-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore14\",\"name\":\"publicpreviewccystore14\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:51:34.5246751Z\",\"key2\":\"2021-02-25T03:51:34.5246751Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:34.5246751Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:34.5246751Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:51:34.4546714Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore14.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore14.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore14.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore14.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore14.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore14.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore14-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore14-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore14-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore14-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore14-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/publicpreviewccystore15\",\"name\":\"publicpreviewccystore15\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2029\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-25T03:51:43.1794956Z\",\"key2\":\"2021-02-25T03:51:43.1794956Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:43.1794956Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-25T03:51:43.1794956Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-25T03:51:43.0944930Z\",\"primaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore15.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore15.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore15.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore15.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore15.table.core.windows.net/\",\"file\":\"https://publicpreviewccystore15.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://publicpreviewccystore15-secondary.dfs.core.windows.net/\",\"web\":\"https://publicpreviewccystore15-secondary.z2.web.core.windows.net/\",\"blob\":\"https://publicpreviewccystore15-secondary.blob.core.windows.net/\",\"queue\":\"https://publicpreviewccystore15-secondary.queue.core.windows.net/\",\"table\":\"https://publicpreviewccystore15-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abzrstestvm1_group/providers/Microsoft.Storage/storageAccounts/q8xccypod01otds1\",\"name\":\"q8xccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-30T08:27:53.8647195Z\",\"key2\":\"2021-06-30T08:27:53.8647195Z\"},\"privateEndpointConnections\":[],\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T08:27:53.8647195Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-30T08:27:53.8647195Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-30T08:27:53.7866194Z\",\"primaryEndpoints\":{\"dfs\":\"https://q8xccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://q8xccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://q8xccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://q8xccypod01otds1.queue.core.windows.net/\",\"table\":\"https://q8xccypod01otds1.table.core.windows.net/\",\"file\":\"https://q8xccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://q8xccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://q8xccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://q8xccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://q8xccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://q8xccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/qjuccypod01otds1\",\"name\":\"qjuccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-15T09:17:44.5718547Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-15T09:17:44.5718547Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-15T09:17:44.4968520Z\",\"primaryEndpoints\":{\"dfs\":\"https://qjuccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://qjuccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://qjuccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://qjuccypod01otds1.queue.core.windows.net/\",\"table\":\"https://qjuccypod01otds1.table.core.windows.net/\",\"file\":\"https://qjuccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://qjuccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://qjuccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://qjuccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://qjuccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://qjuccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.Storage/storageAccounts/ramatrestore\",\"name\":\"ramatrestore\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-24T06:50:23.1751699Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-24T06:50:23.1751699Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-24T06:50:23.1127744Z\",\"primaryEndpoints\":{\"dfs\":\"https://ramatrestore.dfs.core.windows.net/\",\"web\":\"https://ramatrestore.z2.web.core.windows.net/\",\"blob\":\"https://ramatrestore.blob.core.windows.net/\",\"queue\":\"https://ramatrestore.queue.core.windows.net/\",\"table\":\"https://ramatrestore.table.core.windows.net/\",\"file\":\"https://ramatrestore.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://ramatrestore-secondary.dfs.core.windows.net/\",\"web\":\"https://ramatrestore-secondary.z2.web.core.windows.net/\",\"blob\":\"https://ramatrestore-secondary.blob.core.windows.net/\",\"queue\":\"https://ramatrestore-secondary.queue.core.windows.net/\",\"table\":\"https://ramatrestore-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramatpp/providers/Microsoft.Storage/storageAccounts/ramatstorageblob\",\"name\":\"ramatstorageblob\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-22T11:53:35.5005695Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-22T11:53:35.5005695Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-22T11:53:35.4305681Z\",\"primaryEndpoints\":{\"dfs\":\"https://ramatstorageblob.dfs.core.windows.net/\",\"web\":\"https://ramatstorageblob.z2.web.core.windows.net/\",\"blob\":\"https://ramatstorageblob.blob.core.windows.net/\",\"queue\":\"https://ramatstorageblob.queue.core.windows.net/\",\"table\":\"https://ramatstorageblob.table.core.windows.net/\",\"file\":\"https://ramatstorageblob.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://ramatstorageblob-secondary.dfs.core.windows.net/\",\"web\":\"https://ramatstorageblob-secondary.z2.web.core.windows.net/\",\"blob\":\"https://ramatstorageblob-secondary.blob.core.windows.net/\",\"queue\":\"https://ramatstorageblob-secondary.queue.core.windows.net/\",\"table\":\"https://ramatstorageblob-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathblobtestingsa\",\"name\":\"sarathblobtestingsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-17T05:18:46.6187945Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-17T05:18:46.6187945Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-17T05:18:46.5538141Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathblobtestingsa.dfs.core.windows.net/\",\"web\":\"https://sarathblobtestingsa.z2.web.core.windows.net/\",\"blob\":\"https://sarathblobtestingsa.blob.core.windows.net/\",\"queue\":\"https://sarathblobtestingsa.queue.core.windows.net/\",\"table\":\"https://sarathblobtestingsa.table.core.windows.net/\",\"file\":\"https://sarathblobtestingsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sarathblobtestingsa-secondary.dfs.core.windows.net/\",\"web\":\"https://sarathblobtestingsa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://sarathblobtestingsa-secondary.blob.core.windows.net/\",\"queue\":\"https://sarathblobtestingsa-secondary.queue.core.windows.net/\",\"table\":\"https://sarathblobtestingsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathblobtestsa\",\"name\":\"sarathblobtestsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-05-19T09:36:27.5830393Z\",\"key2\":\"2021-05-19T09:36:27.5830393Z\"},\"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-05-19T09:36:27.5830393Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-05-19T09:36:27.5830393Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-05-19T09:36:27.4780102Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathblobtestsa.dfs.core.windows.net/\",\"web\":\"https://sarathblobtestsa.z2.web.core.windows.net/\",\"blob\":\"https://sarathblobtestsa.blob.core.windows.net/\",\"queue\":\"https://sarathblobtestsa.queue.core.windows.net/\",\"table\":\"https://sarathblobtestsa.table.core.windows.net/\",\"file\":\"https://sarathblobtestsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathdppsa\",\"name\":\"sarathdppsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-17T05:23:46.7045820Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-17T05:23:46.7045820Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-17T05:23:46.6495812Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathdppsa.dfs.core.windows.net/\",\"web\":\"https://sarathdppsa.z2.web.core.windows.net/\",\"blob\":\"https://sarathdppsa.blob.core.windows.net/\",\"queue\":\"https://sarathdppsa.queue.core.windows.net/\",\"table\":\"https://sarathdppsa.table.core.windows.net/\",\"file\":\"https://sarathdppsa.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sarathdppsa-secondary.dfs.core.windows.net/\",\"web\":\"https://sarathdppsa-secondary.z2.web.core.windows.net/\",\"blob\":\"https://sarathdppsa-secondary.blob.core.windows.net/\",\"queue\":\"https://sarathdppsa-secondary.queue.core.windows.net/\",\"table\":\"https://sarathdppsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathdppsa2\",\"name\":\"sarathdppsa2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"isHnsEnabled\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-17T05:34:44.5695244Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-17T05:34:44.5695244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-17T05:34:44.5145022Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathdppsa2.dfs.core.windows.net/\",\"web\":\"https://sarathdppsa2.z2.web.core.windows.net/\",\"blob\":\"https://sarathdppsa2.blob.core.windows.net/\",\"queue\":\"https://sarathdppsa2.queue.core.windows.net/\",\"table\":\"https://sarathdppsa2.table.core.windows.net/\",\"file\":\"https://sarathdppsa2.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sarathdppsa2-secondary.dfs.core.windows.net/\",\"web\":\"https://sarathdppsa2-secondary.z2.web.core.windows.net/\",\"blob\":\"https://sarathdppsa2-secondary.blob.core.windows.net/\",\"queue\":\"https://sarathdppsa2-secondary.queue.core.windows.net/\",\"table\":\"https://sarathdppsa2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/storeerpqdqabsalps\",\"name\":\"storeerpqdqabsalps\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-03T05:27:08.4533805Z\",\"key2\":\"2021-03-03T05:27:08.4533805Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-03T05:27:08.4583509Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-03T05:27:08.4583509Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-03T05:27:08.3583501Z\",\"primaryEndpoints\":{\"web\":\"https://storeerpqdqabsalps.z2.web.core.windows.net/\",\"blob\":\"https://storeerpqdqabsalps.blob.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BlobBackup-BugBash/providers/Microsoft.Storage/storageAccounts/testencryptedsa1\",\"name\":\"testencryptedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T02:20:47.2981027Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T02:20:47.2981027Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T02:20:47.2280991Z\",\"primaryEndpoints\":{\"dfs\":\"https://testencryptedsa1.dfs.core.windows.net/\",\"web\":\"https://testencryptedsa1.z2.web.core.windows.net/\",\"blob\":\"https://testencryptedsa1.blob.core.windows.net/\",\"queue\":\"https://testencryptedsa1.queue.core.windows.net/\",\"table\":\"https://testencryptedsa1.table.core.windows.net/\",\"file\":\"https://testencryptedsa1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://testencryptedsa1-secondary.dfs.core.windows.net/\",\"web\":\"https://testencryptedsa1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://testencryptedsa1-secondary.blob.core.windows.net/\",\"queue\":\"https://testencryptedsa1-secondary.queue.core.windows.net/\",\"table\":\"https://testencryptedsa1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testkar1/providers/Microsoft.Storage/storageAccounts/testsakar1\",\"name\":\"testsakar1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\" Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T05:51:35.0548951Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T05:51:35.0548951Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T05:51:34.9998653Z\",\"primaryEndpoints\":{\"dfs\":\"https://testsakar1.dfs.core.windows.net/\",\"web\":\"https://testsakar1.z2.web.core.windows.net/\",\"blob\":\"https://testsakar1.blob.core.windows.net/\",\"queue\":\"https://testsakar1.queue.core.windows.net/\",\"table\":\"https://testsakar1.table.core.windows.net/\",\"file\":\"https://testsakar1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testkar1/providers/Microsoft.Storage/storageAccounts/testsakar2\",\"name\":\"testsakar2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-06T11:54:44.0169407Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-06T11:54:44.0169407Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-06T11:54:43.9369587Z\",\"primaryEndpoints\":{\"dfs\":\"https://testsakar2.dfs.core.windows.net/\",\"web\":\"https://testsakar2.z2.web.core.windows.net/\",\"blob\":\"https://testsakar2.blob.core.windows.net/\",\"queue\":\"https://testsakar2.queue.core.windows.net/\",\"table\":\"https://testsakar2.table.core.windows.net/\",\"file\":\"https://testsakar2.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://testsakar2-secondary.dfs.core.windows.net/\",\"web\":\"https://testsakar2-secondary.z2.web.core.windows.net/\",\"blob\":\"https://testsakar2-secondary.blob.core.windows.net/\",\"queue\":\"https://testsakar2-secondary.queue.core.windows.net/\",\"table\":\"https://testsakar2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PratikBugBashRG/providers/Microsoft.Storage/storageAccounts/todeletesapratik2\",\"name\":\"todeletesapratik2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T14:58:19.2620274Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-18T14:58:19.2620274Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-18T14:58:19.1720121Z\",\"primaryEndpoints\":{\"dfs\":\"https://todeletesapratik2.dfs.core.windows.net/\",\"web\":\"https://todeletesapratik2.z2.web.core.windows.net/\",\"blob\":\"https://todeletesapratik2.blob.core.windows.net/\",\"queue\":\"https://todeletesapratik2.queue.core.windows.net/\",\"table\":\"https://todeletesapratik2.table.core.windows.net/\",\"file\":\"https://todeletesapratik2.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/ujeccypod01otds1\",\"name\":\"ujeccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-02-24T05:43:52.4112270Z\",\"key2\":\"2021-02-24T05:43:52.4112270Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-24T05:43:52.4112270Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-24T05:43:52.4112270Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-24T05:43:52.3212285Z\",\"primaryEndpoints\":{\"dfs\":\"https://ujeccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://ujeccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://ujeccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://ujeccypod01otds1.queue.core.windows.net/\",\"table\":\"https://ujeccypod01otds1.table.core.windows.net/\",\"file\":\"https://ujeccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://ujeccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://ujeccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://ujeccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://ujeccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://ujeccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vikotturpostgrestesting/providers/Microsoft.Storage/storageAccounts/vikotturstandartstorage\",\"name\":\"vikotturstandartstorage\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{\"MAB + Used\":\" Yes\",\" Owner\":\"vikottur\",\"Purpose\":\" Testing\",\"DeletBy\":\"12-2024\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-07T07:42:29.3423910Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-07T07:42:29.3423910Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Cool\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-07T07:42:29.2823937Z\",\"primaryEndpoints\":{\"dfs\":\"https://vikotturstandartstorage.dfs.core.windows.net/\",\"web\":\"https://vikotturstandartstorage.z2.web.core.windows.net/\",\"blob\":\"https://vikotturstandartstorage.blob.core.windows.net/\",\"queue\":\"https://vikotturstandartstorage.queue.core.windows.net/\",\"table\":\"https://vikotturstandartstorage.table.core.windows.net/\",\"file\":\"https://vikotturstandartstorage.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/x88ccypod01otds1\",\"name\":\"x88ccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-16T08:35:42.6523074Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-02-16T08:35:42.6523074Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-02-16T08:35:42.5522969Z\",\"primaryEndpoints\":{\"dfs\":\"https://x88ccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://x88ccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://x88ccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://x88ccypod01otds1.queue.core.windows.net/\",\"table\":\"https://x88ccypod01otds1.table.core.windows.net/\",\"file\":\"https://x88ccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://x88ccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://x88ccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://x88ccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://x88ccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://x88ccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-rg/providers/Microsoft.Storage/storageAccounts/zftccypod01otds1\",\"name\":\"zftccypod01otds1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centraluseuap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-28T17:19:10.9872144Z\",\"key2\":\"2021-06-28T17:19:10.9872144Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-28T17:19:10.9872144Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-28T17:19:10.9872144Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-28T17:19:10.9091065Z\",\"primaryEndpoints\":{\"dfs\":\"https://zftccypod01otds1.dfs.core.windows.net/\",\"web\":\"https://zftccypod01otds1.z2.web.core.windows.net/\",\"blob\":\"https://zftccypod01otds1.blob.core.windows.net/\",\"queue\":\"https://zftccypod01otds1.queue.core.windows.net/\",\"table\":\"https://zftccypod01otds1.table.core.windows.net/\",\"file\":\"https://zftccypod01otds1.file.core.windows.net/\"},\"primaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2euap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://zftccypod01otds1-secondary.dfs.core.windows.net/\",\"web\":\"https://zftccypod01otds1-secondary.z2.web.core.windows.net/\",\"blob\":\"https://zftccypod01otds1-secondary.blob.core.windows.net/\",\"queue\":\"https://zftccypod01otds1-secondary.queue.core.windows.net/\",\"table\":\"https://zftccypod01otds1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.Storage/storageAccounts/abhinkszwsa\",\"name\":\"abhinkszwsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"switzerlandwest\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-04T14:18:28.2392071Z\",\"key2\":\"2021-06-04T14:18:28.2392071Z\"},\"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-06-04T14:18:28.2392071Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-04T14:18:28.2392071Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-04T14:18:28.1767249Z\",\"primaryEndpoints\":{\"dfs\":\"https://abhinkszwsa.dfs.core.windows.net/\",\"web\":\"https://abhinkszwsa.z1.web.core.windows.net/\",\"blob\":\"https://abhinkszwsa.blob.core.windows.net/\",\"queue\":\"https://abhinkszwsa.queue.core.windows.net/\",\"table\":\"https://abhinkszwsa.table.core.windows.net/\",\"file\":\"https://abhinkszwsa.file.core.windows.net/\"},\"primaryLocation\":\"switzerlandwest\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"switzerlandnorth\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://abhinkszwsa-secondary.dfs.core.windows.net/\",\"web\":\"https://abhinkszwsa-secondary.z1.web.core.windows.net/\",\"blob\":\"https://abhinkszwsa-secondary.blob.core.windows.net/\",\"queue\":\"https://abhinkszwsa-secondary.queue.core.windows.net/\",\"table\":\"https://abhinkszwsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinkszw/providers/Microsoft.Storage/storageAccounts/abhinkszwsa1\",\"name\":\"abhinkszwsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"switzerlandwest\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-06-04T14:24:04.3601360Z\",\"key2\":\"2021-06-04T14:24:04.3601360Z\"},\"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-06-04T14:24:04.3601360Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-04T14:24:04.3601360Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-04T14:24:04.2976343Z\",\"primaryEndpoints\":{\"dfs\":\"https://abhinkszwsa1.dfs.core.windows.net/\",\"web\":\"https://abhinkszwsa1.z1.web.core.windows.net/\",\"blob\":\"https://abhinkszwsa1.blob.core.windows.net/\",\"queue\":\"https://abhinkszwsa1.queue.core.windows.net/\",\"table\":\"https://abhinkszwsa1.table.core.windows.net/\",\"file\":\"https://abhinkszwsa1.file.core.windows.net/\"},\"primaryLocation\":\"switzerlandwest\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"switzerlandnorth\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://abhinkszwsa1-secondary.dfs.core.windows.net/\",\"web\":\"https://abhinkszwsa1-secondary.z1.web.core.windows.net/\",\"blob\":\"https://abhinkszwsa1-secondary.blob.core.windows.net/\",\"queue\":\"https://abhinkszwsa1-secondary.queue.core.windows.net/\",\"table\":\"https://abhinkszwsa1-secondary.table.core.windows.net/\"}}}]}" + headers: + cache-control: + - no-cache + content-length: + - '320342' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 15:11:24 GMT + - Tue, 13 Jul 2021 15:14: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: - - '42' - x-powered-by: - - ASP.NET + x-ms-original-request-ids: + - 34352fef-eed0-4504-a4c3-d0982b217352 + - b2e5c3f0-f0a3-4b7c-80c4-48e06e968914 + - 2e4bce8c-b201-42bb-b3d2-66e9a01bdfd5 + - 40596a14-56b4-402b-aa8f-6c9a3714d057 + - 572f0999-0020-4698-88d6-65012dd8e33c + - 7f982e1f-d2a5-483b-9fc8-f720db45cb42 + - e57731b1-a123-4c53-94be-a44da19ad3f3 + - 7c7b3fef-e5d6-4467-bad9-17af2ad03265 + - a2ee0e84-a073-4f38-917c-8409aa5a9b2c + - cbefc608-1e27-428b-89e9-0339534b952e + - 8d4ad330-318e-41e9-9951-615aaaee5211 + - e23b0632-f795-48de-ad1e-b887b8c5596b + - 13d0bc65-b7b8-42c6-8a9a-f8c080ceaf70 + - 38a67f52-83a1-46b5-abb6-744ab262003f + - b9d34fe4-c549-49fd-b17f-14327ac14891 + - 2c2fd916-ca1e-41f7-8b01-1c1f2158e356 + - 8f3592ad-94be-4a7d-906c-48e3b39d0e39 + - 4747be03-0af6-42e4-8c45-b537dcd4ac7e + - 493b5e88-c5f6-4732-b730-c3cf1344d63f + - 45eb212a-2d57-48d0-a7ca-8e5ac6c9c695 + - 274c8f78-d6af-4ac2-8039-a106f3a32bec + - 233bd6ae-28ca-4ccd-af14-45b3c5fcaac1 status: code: 200 message: OK @@ -12086,40 +12100,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - storage blob exists Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -n + - --account-name -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT54M28.9654239S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"keys":[{"creationTime":"2021-07-13T15:09:13.4237935Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-07-13T15:09:13.4237935Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '380' content-type: - application/json date: - - Mon, 21 Jun 2021 15:11:55 GMT + - Tue, 13 Jul 2021 15:14:19 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: @@ -12129,66 +12138,57 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' - x-powered-by: - - ASP.NET + - '11999' status: code: 200 message: OK - request: body: null headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait Connection: - keep-alive - ParameterSetName: - - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.26.0 + x-ms-date: + - Tue, 13 Jul 2021 15:14:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://clitest000007.blob.core.windows.net/clitestvmdl2ii-2f547ec364a94faa907da9a41118ab2a/config-clitestvmdl2ii-5a0b2489-bd29-4e21-b913-90491155dd17.json response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT54M59.3175923S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '' headers: - cache-control: - - no-cache + accept-ranges: + - bytes content-length: - - '1159' + - '4096' content-type: - - application/json + - application/octet-stream date: - - Mon, 21 Jun 2021 15:12:25 GMT - expires: - - '-1' - pragma: - - no-cache + - Tue, 13 Jul 2021 15:14:21 GMT + etag: + - '"0x8D94610BD2855D0"' + last-modified: + - Tue, 13 Jul 2021 15:13:15 GMT server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-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 + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-sequence-number: + - '0' + x-ms-blob-type: + - PageBlob + x-ms-creation-time: + - Tue, 13 Jul 2021 15:13:15 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 @@ -12200,40 +12200,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT55M29.8227481S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2515' content-type: - application/json date: - - Mon, 21 Jun 2021 15:12:56 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12243,7 +12240,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '149' x-powered-by: - ASP.NET status: @@ -12257,40 +12254,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT56M0.2423881S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1158' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 15:13:26 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12300,7 +12293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '148' x-powered-by: - ASP.NET status: @@ -12314,40 +12307,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT56M30.7800082S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2515' content-type: - application/json date: - - Mon, 21 Jun 2021 15:13:56 GMT + - Tue, 13 Jul 2021 15: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: @@ -12357,7 +12347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '149' x-powered-by: - ASP.NET status: @@ -12371,40 +12361,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT57M1.3430314S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1158' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 15:14:27 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12414,7 +12400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '149' x-powered-by: - ASP.NET status: @@ -12428,40 +12414,39 @@ 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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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/7242104363155?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT57M31.7518909S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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/7242104363155","name":"7242104363155","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T14:27:30.4342406Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1449' content-type: - application/json date: - - Mon, 21 Jun 2021 15:14:57 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12471,7 +12456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '149' x-powered-by: - ASP.NET status: @@ -12485,40 +12470,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2021-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT58M2.1869597S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-07-13T14%3A19%3A11.7112062Z''\"","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: - - '1158' + - '539' content-type: - application/json date: - - Mon, 21 Jun 2021 15:15:28 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12527,10 +12505,6 @@ 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 @@ -12542,40 +12516,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT58M32.9191538S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '547' content-type: - application/json date: - - Mon, 21 Jun 2021 15:15:58 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12585,7 +12555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '149' x-powered-by: - ASP.NET status: @@ -12599,55 +12569,42 @@ 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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT59M3.3127272S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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: - - '1158' + - '312' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 15:16:29 GMT + - Tue, 13 Jul 2021 15:14: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: - - '32' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -12656,40 +12613,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (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-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT59M33.8998767S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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-07-13T15:09:13.4237935Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T15:09:13.3300022Z","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: - - '1159' + - '974' content-type: - application/json date: - - Mon, 21 Jun 2021 15:16:59 GMT + - Tue, 13 Jul 2021 15:14:26 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: @@ -12698,70 +12648,66 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "7242104363155", "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 job wait + - backup restore restore-disks Connection: - keep-alive + Content-Length: + - '680' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + 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/7242104363155/restore?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4.3257957S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + 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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1157' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 15:17:30 GMT + - Tue, 13 Jul 2021 15:14: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/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + 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: @@ -12770,40 +12716,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H34.8702499S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 15:18:00 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12813,7 +12755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '149' x-powered-by: - ASP.NET status: @@ -12827,40 +12769,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H1M6.7066127S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","status":"Succeeded","startTime":"2021-07-13T15:14:27.6235792Z","endTime":"2021-07-13T15:14:27.6235792Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bc8b717e-3769-4766-95d4-bd9c78286937"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 15:18:32 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -12870,7 +12808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '148' x-powered-by: - ASP.NET status: @@ -12884,33 +12822,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 --restore-as-unmanaged-disks --storage-account User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H1M37.10167S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.1163123S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1198' content-type: - application/json date: - - Mon, 21 Jun 2021 15:19:04 GMT + - Tue, 13 Jul 2021 15:14:30 GMT expires: - '-1' pragma: @@ -12927,8484 +12865,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H2M9.3714355S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:19: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: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H2M39.9972755S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:20: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: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H3M10.4968434S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:20: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: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H3M40.9399383S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:21: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: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4M11.4000295S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:21: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: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4M41.7777007S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:22: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: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H5M12.378403S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:22: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: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H5M42.8819603S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:23:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H6M13.2970675S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:23: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: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H6M43.7141113S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:24:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H7M14.8352726S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H7M45.2850339S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:25: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: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H8M15.9064642S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:25:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H8M46.3598226S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:26: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: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H9M16.9378457S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:26: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: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H9M47.3929362S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:27:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H10M17.7958529S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:27: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: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H10M48.3473315S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:28:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H11M18.6892793S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:28: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: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H11M49.0766475S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:29:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H12M19.7816769S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:29: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: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H12M50.1809088S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:30:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H13M21.141037S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:30:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H13M51.6891964S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:31:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H14M22.3021983S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:31:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H14M52.970194S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:32:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H15M23.442702S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:32:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H15M53.9169583S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:33: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: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H16M24.338851S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:33:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H16M54.7927466S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:34: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: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H17M25.2043177S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:34:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H17M55.7084081S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:35:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H18M26.2115714S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:35: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: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H18M56.5749555S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:36:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H19M27.591167S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H19M58.1274065S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:37:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H20M28.6159787S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:37:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H20M59.0826681S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:38:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H21M29.6565631S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H22M0.1031708S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:39: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: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H22M30.4987038S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:39:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H23M0.8823625S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:40:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H23M31.4563127S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:40:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H24M2.1020906S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:41:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H24M32.4889171S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:41: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: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H25M2.8842553S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:42:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H25M33.5731567S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 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: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H26M4.0418014S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:43:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H26M34.4828678S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:44:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H27M4.8822399S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:44:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H27M35.2669921S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:45: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: - - '32' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H28M6.2173821S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:45: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: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H28M36.6645056S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:46: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: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H29M7.0584139S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:46: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: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H29M37.8213982S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:47: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: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H30M8.2139339S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:47: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: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H30M38.5990988S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H31M8.9761563S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:48:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H31M40.2602868S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H32M10.7555052S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:49:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H32M41.1851891S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:50:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H33M11.6330593S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H33M42.1356091S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:51:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H34M12.9231703S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:51: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: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H34M43.3842445S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:52: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: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H35M13.7785062S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:52: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: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H35M44.2496218S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:53:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H36M14.7728831S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:53: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: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H36M45.194003S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:54:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H37M15.6433612S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:54: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: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H37M46.1487339S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:55: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: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H38M16.8333546S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15: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: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H38M47.2419844S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:56:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H39M17.5957961S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:56:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H39M48.1844263S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:57:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H40M18.6275305S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:57:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H40M49.0003772S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:58:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H41M19.7470423S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:58:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H41M50.1604047S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:59:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H42M20.5488064S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 15:59:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H42M51.0107499S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:00:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H43M21.559098S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:00:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H43M52.0743975S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:01:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H44M22.8667018S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H44M53.5624839S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:02:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H45M23.9967031S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:02:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H45M54.4884577S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:03:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H46M25.0481323S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:03:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H46M55.5361509S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:04:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H47M26.0182686S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:04:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H47M56.3852036S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:05:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H48M26.8931132S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:05:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H48M57.3031686S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:06:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H49M28.0084557S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:06:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H49M58.4223386S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:07:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H50M28.8817958S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:07:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H50M59.380271S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:08: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: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H51M31.0567627S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:08:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H52M1.426353S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:09:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H52M31.8461579S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16: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: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H53M2.3061276S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:10:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H53M32.7880591S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:10:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H54M3.1881426S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:11:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H54M33.5376466S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:11:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H55M4.0748117S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:12:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H55M34.8795679S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:13:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H56M7.0522813S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:13: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: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H56M37.4819132S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:14:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H57M7.8855963S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:14:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H57M38.9997637S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:15:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H58M9.7273042S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:15:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H58M40.15709S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:16: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: - - '30' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H59M10.5695218S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:16:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H59M41.2680122S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1161' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:17:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2H11.7784573S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:17: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: - - '27' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2H42.2780404S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:18: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: - - '26' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2H1M12.7148808S","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":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T14:17:25.9938735Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1160' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:18: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: - - '25' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/1f2a2e11-25cf-476b-b3d8-faf79513ff95","name":"1f2a2e11-25cf-476b-b3d8-faf79513ff95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2H1M14.3146778S","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":"7/21/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-21T14:17:25.9938735Z","endTime":"2021-06-21T16:18:40.3085513Z","activityId":"66b5597f-d29b-11eb-b06a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1224' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:19:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - 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 --query - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2363' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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 recoverypoint list - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --query - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - 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=2021-01-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/6503856810886","name":"6503856810886","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T14:17:29.2407055Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1461' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2363' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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 --restore-to-staging-storage-account - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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: - - Mon, 21 Jun 2021 16:20:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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 --restore-to-staging-storage-account - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2363' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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: - - Mon, 21 Jun 2021 16:20: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/6503856810886?api-version=2021-01-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/6503856810886","name":"6503856810886","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T14:17:29.2407055Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}' - headers: - cache-control: - - no-cache - content-length: - - '1449' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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: - - '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 --restore-to-staging-storage-account - User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 - response: - body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-06-21T14%3A14%3A30.5085878Z''\"","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: - - Mon, 21 Jun 2021 16:20: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 - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2363' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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: - - Mon, 21 Jun 2021 16:20:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2363' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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: - - Mon, 21 Jun 2021 16:20: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 -t --storage-account --restore-to-staging-storage-account - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/6503856810886?api-version=2021-01-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/6503856810886","name":"6503856810886","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T14:17:29.2407055Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}' - headers: - cache-control: - - no-cache - content-length: - - '1449' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account - User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 - response: - body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-06-21T14%3A14%3A30.5085878Z''\"","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: - - Mon, 21 Jun 2021 16:20: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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: - - Mon, 21 Jun 2021 16:20: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 - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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-06-21T16:19:42.2140210Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T16:19:42.1202285Z","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: - - Mon, 21 Jun 2021 16:20:41 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": - "6503856810886", "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: - - '851' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: 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/6503856810886/restore?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 16:20:42 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/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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: - - '88' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","status":"Succeeded","startTime":"2021-06-21T16:20:42.7990124Z","endTime":"2021-06-21T16:20:42.7990124Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"995ae1d8-5a3d-4147-a53d-6ec226473fdf"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20: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: - - '87' - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1.9720124S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1300' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16: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: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.9141944S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1300' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16: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: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.3670335S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1300' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:20:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34.8078759S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1301' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:21: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: - - '147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M5.4300369S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1302' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:21: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: - - '146' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M36.0721147S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1303' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:22: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: - - '145' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M6.7243223S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1393' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16: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: - - '144' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M37.2637271S","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 ":"6/21/2021 2:17:29 PM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:20:42.7990124Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1394' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16: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: - - '143' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.693566S","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 ":"6/21/2021 2:17:29 PM","Config Blob Name":"config-clitestvm3qcuc-995ae1d8-5a3d-4147-a53d-6ec226473fdf.json","Config - Blob Container Name":"clitestvm3qcuc-407743082bf045b1aa48bb72054991fd","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-407743082bf045b1aa48bb72054991fd/config-clitestvm3qcuc-995ae1d8-5a3d-4147-a53d-6ec226473fdf.json","Target - resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-407743082bf045b1aa48bb72054991fd/azuredeploy995ae1d8-5a3d-4147-a53d-6ec226473fdf.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T16:20:42.7990124Z","endTime":"2021-06-21T16:23:48.4925784Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1962' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:23:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/995ae1d8-5a3d-4147-a53d-6ec226473fdf","name":"995ae1d8-5a3d-4147-a53d-6ec226473fdf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.693566S","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 ":"6/21/2021 2:17:29 PM","Config Blob Name":"config-clitestvm3qcuc-995ae1d8-5a3d-4147-a53d-6ec226473fdf.json","Config - Blob Container Name":"clitestvm3qcuc-407743082bf045b1aa48bb72054991fd","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-407743082bf045b1aa48bb72054991fd/config-clitestvm3qcuc-995ae1d8-5a3d-4147-a53d-6ec226473fdf.json","Target - resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-407743082bf045b1aa48bb72054991fd/azuredeploy995ae1d8-5a3d-4147-a53d-6ec226473fdf.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T16:20:42.7990124Z","endTime":"2021-06-21T16:23:48.4925784Z","activityId":"9d94d532-d2ac-11eb-b118-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1962' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16: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: - - '148' - 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.25.0 azsdk-python-azure-mgmt-storage/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.Storage/storageAccounts?api-version=2021-04-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/da1675eastus\",\"name\":\"da1675eastus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:12.0885848Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:12.0885848Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-07-26T19:41:16.7800756Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675eastus.blob.core.windows.net/\",\"queue\":\"https://da1675eastus.queue.core.windows.net/\",\"table\":\"https://da1675eastus.table.core.windows.net/\",\"file\":\"https://da1675eastus.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiaga-rg/providers/Microsoft.Storage/storageAccounts/pscmdlets\",\"name\":\"pscmdlets\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"pscmd\":\"pscmd\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-26T06:31:12.7148947Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-26T06:31:12.7148947Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-26T06:31:12.6367430Z\",\"primaryEndpoints\":{\"dfs\":\"https://pscmdlets.dfs.core.windows.net/\",\"web\":\"https://pscmdlets.z13.web.core.windows.net/\",\"blob\":\"https://pscmdlets.blob.core.windows.net/\",\"queue\":\"https://pscmdlets.queue.core.windows.net/\",\"table\":\"https://pscmdlets.table.core.windows.net/\",\"file\":\"https://pscmdlets.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag506\",\"name\":\"asebvtrgdiag506\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"BVT\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-01-07T04:15:40.0622848Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-01-07T04:15:40.0622848Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-01-07T04:15:39.9841543Z\",\"primaryEndpoints\":{\"blob\":\"https://asebvtrgdiag506.blob.core.windows.net/\",\"queue\":\"https://asebvtrgdiag506.queue.core.windows.net/\",\"table\":\"https://asebvtrgdiag506.table.core.windows.net/\",\"file\":\"https://asebvtrgdiag506.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/bvtsa\",\"name\":\"bvtsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"DeleteBy\":\"01-2025\",\"Owner\":\"sarath\",\"Purpose\":\" - BVT\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-24T09:52:59.9944599Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-24T09:52:59.9944599Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-01-24T09:52:59.9319970Z\",\"primaryEndpoints\":{\"dfs\":\"https://bvtsa.dfs.core.windows.net/\",\"web\":\"https://bvtsa.z22.web.core.windows.net/\",\"blob\":\"https://bvtsa.blob.core.windows.net/\",\"queue\":\"https://bvtsa.queue.core.windows.net/\",\"table\":\"https://bvtsa.table.core.windows.net/\",\"file\":\"https://bvtsa.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://bvtsa-secondary.dfs.core.windows.net/\",\"web\":\"https://bvtsa-secondary.z22.web.core.windows.net/\",\"blob\":\"https://bvtsa-secondary.blob.core.windows.net/\",\"queue\":\"https://bvtsa-secondary.queue.core.windows.net/\",\"table\":\"https://bvtsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Storage/storageAccounts/chandrikargdiag444\",\"name\":\"chandrikargdiag444\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"Owner\":\"chgonugu\",\"Purpose\":\"Testing\",\"MAB - Used\":\"Yes\",\"Delete By\":\"12-2019\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-2019\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-10-04T07:55:33.3992134Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-10-04T07:55:33.3992134Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-04T07:55:33.3367633Z\",\"primaryEndpoints\":{\"blob\":\"https://chandrikargdiag444.blob.core.windows.net/\",\"queue\":\"https://chandrikargdiag444.queue.core.windows.net/\",\"table\":\"https://chandrikargdiag444.table.core.windows.net/\",\"file\":\"https://chandrikargdiag444.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/da1675westus\",\"name\":\"da1675westus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:14.0927449Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:14.0927449Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-08-01T05:09:14.4960964Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675westus.blob.core.windows.net/\",\"queue\":\"https://da1675westus.queue.core.windows.net/\",\"table\":\"https://da1675westus.table.core.windows.net/\",\"file\":\"https://da1675westus.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Storage/storageAccounts/pstestsaa\",\"name\":\"pstestsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-09-17T09:10:01.7926620Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-09-17T09:10:01.7926620Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-09-17T09:10:01.4489133Z\",\"primaryEndpoints\":{\"blob\":\"https://pstestsaa.blob.core.windows.net/\",\"queue\":\"https://pstestsaa.queue.core.windows.net/\",\"table\":\"https://pstestsaa.table.core.windows.net/\",\"file\":\"https://pstestsaa.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.Storage/storageAccounts/sdksa\",\"name\":\"sdksa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-12T10:29:29.1491857Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-12T10:29:29.1491857Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-12-12T10:29:29.1023271Z\",\"primaryEndpoints\":{\"dfs\":\"https://sdksa.dfs.core.windows.net/\",\"web\":\"https://sdksa.z22.web.core.windows.net/\",\"blob\":\"https://sdksa.blob.core.windows.net/\",\"queue\":\"https://sdksa.queue.core.windows.net/\",\"table\":\"https://sdksa.table.core.windows.net/\",\"file\":\"https://sdksa.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sdksa-secondary.dfs.core.windows.net/\",\"web\":\"https://sdksa-secondary.z22.web.core.windows.net/\",\"blob\":\"https://sdksa-secondary.blob.core.windows.net/\",\"queue\":\"https://sdksa-secondary.queue.core.windows.net/\",\"table\":\"https://sdksa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Storage/storageAccounts/sisisa\",\"name\":\"sisisa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-06-29T06:19:00.3203156Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-06-29T06:19:00.3203156Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-06-29T06:19:00.1953245Z\",\"primaryEndpoints\":{\"blob\":\"https://sisisa.blob.core.windows.net/\",\"queue\":\"https://sisisa.queue.core.windows.net/\",\"table\":\"https://sisisa.table.core.windows.net/\",\"file\":\"https://sisisa.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/da1675westeurope\",\"name\":\"da1675westeurope\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-23T00:19:32.2152664Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-23T00:19:32.2152664Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-07-26T01:41:18.4576439Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675westeurope.blob.core.windows.net/\",\"queue\":\"https://da1675westeurope.queue.core.windows.net/\",\"table\":\"https://da1675westeurope.table.core.windows.net/\",\"file\":\"https://da1675westeurope.file.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"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\":{\"keyCreationTime\":{\"key1\":\"2021-06-21T16:20:08.6320951Z\",\"key2\":\"2021-06-21T16:20:08.6320951Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-21T16:20:08.6320951Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-21T16:20:08.6320951Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-21T16:20:08.5695955Z\",\"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\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Storage/storageAccounts/00prjai32tbdiag\",\"name\":\"00prjai32tbdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"mkherani\",\"Purpose\":\"SoftDeleteTesting\",\"MAB - Used\":\"Yes\",\"DeleteBy\":\"08-2019\",\"AutoShutdown\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-05-28T10:45:33.4461465Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-05-28T10:45:33.4461465Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-05-28T10:45:33.3211253Z\",\"primaryEndpoints\":{\"blob\":\"https://00prjai32tbdiag.blob.core.windows.net/\",\"queue\":\"https://00prjai32tbdiag.queue.core.windows.net/\",\"table\":\"https://00prjai32tbdiag.table.core.windows.net/\",\"file\":\"https://00prjai32tbdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag\",\"name\":\"asebvtrgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"nilsha\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-01-04T08:35:42.1082667Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-01-04T08:35:42.1082667Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-01-04T08:35:42.0145167Z\",\"primaryEndpoints\":{\"blob\":\"https://asebvtrgdiag.blob.core.windows.net/\",\"queue\":\"https://asebvtrgdiag.queue.core.windows.net/\",\"table\":\"https://asebvtrgdiag.table.core.windows.net/\",\"file\":\"https://asebvtrgdiag.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\":{\"keyCreationTime\":{\"key1\":\"2021-06-21T16:19:42.2140210Z\",\"key2\":\"2021-06-21T16:19:42.2140210Z\"},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-21T16:19:42.2140210Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-06-21T16:19:42.2140210Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-06-21T16:19:42.1202285Z\",\"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/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti215\",\"name\":\"containerautoprotecti215\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"DeleteBy\":\"01-2021\",\"Owner\":\"shrja\",\"Mab - Used\":\"Yes\",\"AutoShutdown\":\"No\",\"Purpose\":\"Testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T11:16:42.7172178Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T11:16:42.7172178Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-06T11:16:42.6391540Z\",\"primaryEndpoints\":{\"blob\":\"https://containerautoprotecti215.blob.core.windows.net/\",\"queue\":\"https://containerautoprotecti215.queue.core.windows.net/\",\"table\":\"https://containerautoprotecti215.table.core.windows.net/\",\"file\":\"https://containerautoprotecti215.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti667\",\"name\":\"containerautoprotecti667\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"DeleteBy\":\"11-2020\",\"Owner\":\"shrja\",\"MabUsed\":\"Yes\",\"Purpose\":\"Testing\",\"AutoShutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T08:27:10.5973243Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T08:27:10.5973243Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-06T08:27:10.5192188Z\",\"primaryEndpoints\":{\"blob\":\"https://containerautoprotecti667.blob.core.windows.net/\",\"queue\":\"https://containerautoprotecti667.queue.core.windows.net/\",\"table\":\"https://containerautoprotecti667.table.core.windows.net/\",\"file\":\"https://containerautoprotecti667.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotectiond\",\"name\":\"containerautoprotectiond\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB - Used\":\"Yes\",\"DeleteBy\":\"01-2021\",\"AutoShutdown\":\"No\",\"Owner\":\"shrja\",\"Purpose\":\"testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-30T08:35:17.4533955Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-30T08:35:17.4533955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-06-30T08:35:17.3752244Z\",\"primaryEndpoints\":{\"blob\":\"https://containerautoprotectiond.blob.core.windows.net/\",\"queue\":\"https://containerautoprotectiond.queue.core.windows.net/\",\"table\":\"https://containerautoprotectiond.table.core.windows.net/\",\"file\":\"https://containerautoprotectiond.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/da1675southeastasia\",\"name\":\"da1675southeastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-07T23:26:02.8958366Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-07T23:26:02.8958366Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-08-01T05:09:13.3819891Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675southeastasia.blob.core.windows.net/\",\"queue\":\"https://da1675southeastasia.queue.core.windows.net/\",\"table\":\"https://da1675southeastasia.table.core.windows.net/\",\"file\":\"https://da1675southeastasia.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.Storage/storageAccounts/dnwjfewkfewnjf\",\"name\":\"dnwjfewkfewnjf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-24T05:39:50.0114092Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-24T05:39:50.0114092Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-06-24T05:39:49.9332431Z\",\"primaryEndpoints\":{\"dfs\":\"https://dnwjfewkfewnjf.dfs.core.windows.net/\",\"web\":\"https://dnwjfewkfewnjf.z23.web.core.windows.net/\",\"blob\":\"https://dnwjfewkfewnjf.blob.core.windows.net/\",\"queue\":\"https://dnwjfewkfewnjf.queue.core.windows.net/\",\"table\":\"https://dnwjfewkfewnjf.table.core.windows.net/\",\"file\":\"https://dnwjfewkfewnjf.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://dnwjfewkfewnjf-secondary.dfs.core.windows.net/\",\"web\":\"https://dnwjfewkfewnjf-secondary.z23.web.core.windows.net/\",\"blob\":\"https://dnwjfewkfewnjf-secondary.blob.core.windows.net/\",\"queue\":\"https://dnwjfewkfewnjf-secondary.queue.core.windows.net/\",\"table\":\"https://dnwjfewkfewnjf-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.Storage/storageAccounts/fsintegsa\",\"name\":\"fsintegsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-23T12:08:30.9983405Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-23T12:08:30.9983405Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-06-23T12:08:30.9358747Z\",\"primaryEndpoints\":{\"dfs\":\"https://fsintegsa.dfs.core.windows.net/\",\"web\":\"https://fsintegsa.z23.web.core.windows.net/\",\"blob\":\"https://fsintegsa.blob.core.windows.net/\",\"queue\":\"https://fsintegsa.queue.core.windows.net/\",\"table\":\"https://fsintegsa.table.core.windows.net/\",\"file\":\"https://fsintegsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://fsintegsa-secondary.dfs.core.windows.net/\",\"web\":\"https://fsintegsa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://fsintegsa-secondary.blob.core.windows.net/\",\"queue\":\"https://fsintegsa-secondary.queue.core.windows.net/\",\"table\":\"https://fsintegsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Storage/storageAccounts/gesahoov2sa\",\"name\":\"gesahoov2sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-16T12:17:53.4800531Z\",\"key2\":\"2021-03-16T12:17:53.4800531Z\"},\"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-03-16T12:17:53.4800531Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-16T12:17:53.4800531Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-16T12:17:53.4019418Z\",\"primaryEndpoints\":{\"dfs\":\"https://gesahoov2sa.dfs.core.windows.net/\",\"web\":\"https://gesahoov2sa.z23.web.core.windows.net/\",\"blob\":\"https://gesahoov2sa.blob.core.windows.net/\",\"queue\":\"https://gesahoov2sa.queue.core.windows.net/\",\"table\":\"https://gesahoov2sa.table.core.windows.net/\",\"file\":\"https://gesahoov2sa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://gesahoov2sa-secondary.dfs.core.windows.net/\",\"web\":\"https://gesahoov2sa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://gesahoov2sa-secondary.blob.core.windows.net/\",\"queue\":\"https://gesahoov2sa-secondary.queue.core.windows.net/\",\"table\":\"https://gesahoov2sa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdiag402\",\"name\":\"ignitergdiag402\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-07T23:26:03.5052628Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-07T23:26:03.5052628Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-01-27T09:36:47.4551714Z\",\"primaryEndpoints\":{\"blob\":\"https://ignitergdiag402.blob.core.windows.net/\",\"queue\":\"https://ignitergdiag402.queue.core.windows.net/\",\"table\":\"https://ignitergdiag402.table.core.windows.net/\",\"file\":\"https://ignitergdiag402.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316\",\"name\":\"ignitergdisks316\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-07T23:26:03.6302472Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-07T23:26:03.6302472Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-01-27T09:36:47.5151759Z\",\"primaryEndpoints\":{\"blob\":\"https://ignitergdisks316.blob.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"FileStorage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranipfs/providers/Microsoft.Storage/storageAccounts/mkheranipfs\",\"name\":\"mkheranipfs\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"largeFileSharesState\":\"Enabled\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-09-23T11:48:14.2267961Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-09-23T11:48:14.2267961Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-09-23T11:48:14.1486934Z\",\"primaryEndpoints\":{\"file\":\"https://mkheranipfs.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranisd02/providers/Microsoft.Storage/storageAccounts/mkheranisd02diag\",\"name\":\"mkheranisd02diag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB - Used\":\"\_Yes\",\"Owner\":\"mkherani\",\"DeleteBy\":\"09/20\",\"AutoShutdown\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"largeFileSharesState\":\"Disabled\",\"networkAcls\":{\"bypass\":\"None\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Deny\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-08-20T09:13:52.4251607Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-08-20T09:13:52.4251607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-08-20T09:13:52.3626864Z\",\"primaryEndpoints\":{\"blob\":\"https://mkheranisd02diag.blob.core.windows.net/\",\"queue\":\"https://mkheranisd02diag.queue.core.windows.net/\",\"table\":\"https://mkheranisd02diag.table.core.windows.net/\",\"file\":\"https://mkheranisd02diag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa\",\"name\":\"mkheranitestsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MABUsed\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"largeFileSharesState\":\"Disabled\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-10T05:47:14.9539559Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-10T05:47:14.9539559Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-07-10T05:47:14.8602331Z\",\"primaryEndpoints\":{\"dfs\":\"https://mkheranitestsa.dfs.core.windows.net/\",\"web\":\"https://mkheranitestsa.z23.web.core.windows.net/\",\"blob\":\"https://mkheranitestsa.blob.core.windows.net/\",\"queue\":\"https://mkheranitestsa.queue.core.windows.net/\",\"table\":\"https://mkheranitestsa.table.core.windows.net/\",\"file\":\"https://mkheranitestsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest\",\"name\":\"nilshaafstest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB - Used\":\" Yes\",\"Delete By\":\"05-2099\",\"Owner\":\"nilsha\",\"Purpose\":\" - Testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-01T10:35:14.0132717Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-01T10:35:14.0132717Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-11-01T10:35:13.9507912Z\",\"primaryEndpoints\":{\"dfs\":\"https://nilshaafstest.dfs.core.windows.net/\",\"web\":\"https://nilshaafstest.z23.web.core.windows.net/\",\"blob\":\"https://nilshaafstest.blob.core.windows.net/\",\"queue\":\"https://nilshaafstest.queue.core.windows.net/\",\"table\":\"https://nilshaafstest.table.core.windows.net/\",\"file\":\"https://nilshaafstest.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://nilshaafstest-secondary.dfs.core.windows.net/\",\"web\":\"https://nilshaafstest-secondary.z23.web.core.windows.net/\",\"blob\":\"https://nilshaafstest-secondary.blob.core.windows.net/\",\"queue\":\"https://nilshaafstest-secondary.queue.core.windows.net/\",\"table\":\"https://nilshaafstest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestrestoreseacan/providers/Microsoft.Storage/storageAccounts/pstestrestoreseacan\",\"name\":\"pstestrestoreseacan\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-10-05T12:34:18.5205164Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-10-05T12:34:18.5205164Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-10-05T12:34:18.4267695Z\",\"primaryEndpoints\":{\"dfs\":\"https://pstestrestoreseacan.dfs.core.windows.net/\",\"web\":\"https://pstestrestoreseacan.z23.web.core.windows.net/\",\"blob\":\"https://pstestrestoreseacan.blob.core.windows.net/\",\"queue\":\"https://pstestrestoreseacan.queue.core.windows.net/\",\"table\":\"https://pstestrestoreseacan.table.core.windows.net/\",\"file\":\"https://pstestrestoreseacan.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestFSRG3rty7d7s/providers/Microsoft.Storage/storageAccounts/pstestsa3rty7d7s\",\"name\":\"pstestsa3rty7d7s\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-10-19T07:47:47.9374188Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-10-19T07:47:47.9374188Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-10-19T07:47:47.8592987Z\",\"primaryEndpoints\":{\"dfs\":\"https://pstestsa3rty7d7s.dfs.core.windows.net/\",\"web\":\"https://pstestsa3rty7d7s.z23.web.core.windows.net/\",\"blob\":\"https://pstestsa3rty7d7s.blob.core.windows.net/\",\"queue\":\"https://pstestsa3rty7d7s.queue.core.windows.net/\",\"table\":\"https://pstestsa3rty7d7s.table.core.windows.net/\",\"file\":\"https://pstestsa3rty7d7s.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/pstestsa6\",\"name\":\"pstestsa6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-09T10:30:22.3901494Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-09T10:30:22.3901494Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-01-09T10:30:22.3120677Z\",\"primaryEndpoints\":{\"dfs\":\"https://pstestsa6.dfs.core.windows.net/\",\"web\":\"https://pstestsa6.z23.web.core.windows.net/\",\"blob\":\"https://pstestsa6.blob.core.windows.net/\",\"queue\":\"https://pstestsa6.queue.core.windows.net/\",\"table\":\"https://pstestsa6.table.core.windows.net/\",\"file\":\"https://pstestsa6.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://pstestsa6-secondary.dfs.core.windows.net/\",\"web\":\"https://pstestsa6-secondary.z23.web.core.windows.net/\",\"blob\":\"https://pstestsa6-secondary.blob.core.windows.net/\",\"queue\":\"https://pstestsa6-secondary.queue.core.windows.net/\",\"table\":\"https://pstestsa6-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag\",\"name\":\"pstestwlrg1bca8diag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Mab - Used\":\"Yes\",\"MABUsed\":\"Yes\",\"Owner\":\"sisi\",\"DeleteBy\":\"12-2099\",\"Purpose\":\"PS - bvt\",\"AutoShutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-15T07:44:59.2464847Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-11-15T07:44:59.2464847Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-11-15T07:44:59.1683711Z\",\"primaryEndpoints\":{\"blob\":\"https://pstestwlrg1bca8diag.blob.core.windows.net/\",\"queue\":\"https://pstestwlrg1bca8diag.queue.core.windows.net/\",\"table\":\"https://pstestwlrg1bca8diag.table.core.windows.net/\",\"file\":\"https://pstestwlrg1bca8diag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sa20200408\",\"name\":\"sa20200408\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-08T05:23:30.4700861Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-08T05:23:30.4700861Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-08T05:23:30.4075842Z\",\"primaryEndpoints\":{\"dfs\":\"https://sa20200408.dfs.core.windows.net/\",\"web\":\"https://sa20200408.z23.web.core.windows.net/\",\"blob\":\"https://sa20200408.blob.core.windows.net/\",\"queue\":\"https://sa20200408.queue.core.windows.net/\",\"table\":\"https://sa20200408.table.core.windows.net/\",\"file\":\"https://sa20200408.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sa20200408-secondary.dfs.core.windows.net/\",\"web\":\"https://sa20200408-secondary.z23.web.core.windows.net/\",\"blob\":\"https://sa20200408-secondary.blob.core.windows.net/\",\"queue\":\"https://sa20200408-secondary.queue.core.windows.net/\",\"table\":\"https://sa20200408-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sambitsa\",\"name\":\"sambitsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-10-14T06:24:43.7660428Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-10-14T06:24:43.7660428Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-14T06:24:43.6878696Z\",\"primaryEndpoints\":{\"dfs\":\"https://sambitsa.dfs.core.windows.net/\",\"web\":\"https://sambitsa.z23.web.core.windows.net/\",\"blob\":\"https://sambitsa.blob.core.windows.net/\",\"queue\":\"https://sambitsa.queue.core.windows.net/\",\"table\":\"https://sambitsa.table.core.windows.net/\",\"file\":\"https://sambitsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sambitsa-secondary.dfs.core.windows.net/\",\"web\":\"https://sambitsa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://sambitsa-secondary.blob.core.windows.net/\",\"queue\":\"https://sambitsa-secondary.queue.core.windows.net/\",\"table\":\"https://sambitsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sam-rg-sea-can/providers/Microsoft.Storage/storageAccounts/samsaseacan\",\"name\":\"samsaseacan\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-08-17T10:53:29.5799967Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-08-17T10:53:29.5799967Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-08-17T10:53:29.4706234Z\",\"primaryEndpoints\":{\"blob\":\"https://samsaseacan.blob.core.windows.net/\",\"queue\":\"https://samsaseacan.queue.core.windows.net/\",\"table\":\"https://samsaseacan.table.core.windows.net/\",\"file\":\"https://samsaseacan.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsa\",\"name\":\"sarathsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-08-23T04:50:06.8287357Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-08-23T04:50:06.8287357Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-08-23T04:50:06.7818295Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathsa.dfs.core.windows.net/\",\"web\":\"https://sarathsa.z23.web.core.windows.net/\",\"blob\":\"https://sarathsa.blob.core.windows.net/\",\"queue\":\"https://sarathsa.queue.core.windows.net/\",\"table\":\"https://sarathsa.table.core.windows.net/\",\"file\":\"https://sarathsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sarathsa-secondary.dfs.core.windows.net/\",\"web\":\"https://sarathsa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://sarathsa-secondary.blob.core.windows.net/\",\"queue\":\"https://sarathsa-secondary.queue.core.windows.net/\",\"table\":\"https://sarathsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsa123\",\"name\":\"sarathsa123\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"largeFileSharesState\":\"Disabled\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-08-28T17:35:05.9400515Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-08-28T17:35:05.9400515Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-08-28T17:35:05.8775784Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathsa123.dfs.core.windows.net/\",\"web\":\"https://sarathsa123.z23.web.core.windows.net/\",\"blob\":\"https://sarathsa123.blob.core.windows.net/\",\"queue\":\"https://sarathsa123.queue.core.windows.net/\",\"table\":\"https://sarathsa123.table.core.windows.net/\",\"file\":\"https://sarathsa123.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathtestsa\",\"name\":\"sarathtestsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-13T07:27:34.9661480Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-13T07:27:34.9661480Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-13T07:27:34.8880276Z\",\"primaryEndpoints\":{\"dfs\":\"https://sarathtestsa.dfs.core.windows.net/\",\"web\":\"https://sarathtestsa.z23.web.core.windows.net/\",\"blob\":\"https://sarathtestsa.blob.core.windows.net/\",\"queue\":\"https://sarathtestsa.queue.core.windows.net/\",\"table\":\"https://sarathtestsa.table.core.windows.net/\",\"file\":\"https://sarathtestsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sarathtestsa-secondary.dfs.core.windows.net/\",\"web\":\"https://sarathtestsa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://sarathtestsa-secondary.blob.core.windows.net/\",\"queue\":\"https://sarathtestsa-secondary.queue.core.windows.net/\",\"table\":\"https://sarathtestsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Storage/storageAccounts/sdkafstest\",\"name\":\"sdkafstest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Mab - Used\":\"yes\",\"Purpose\":\"test\",\"Owner\":\"akkanase\",\"DeleteBy\":\"05-2020\"},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-03-31T08:23:20.6274068Z\",\"key2\":\"2021-03-31T08:23:20.6274068Z\"},\"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-03-31T08:23:20.6274068Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-03-31T08:23:20.6274068Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-03-31T08:23:20.5336234Z\",\"primaryEndpoints\":{\"dfs\":\"https://sdkafstest.dfs.core.windows.net/\",\"web\":\"https://sdkafstest.z23.web.core.windows.net/\",\"blob\":\"https://sdkafstest.blob.core.windows.net/\",\"queue\":\"https://sdkafstest.queue.core.windows.net/\",\"table\":\"https://sdkafstest.table.core.windows.net/\",\"file\":\"https://sdkafstest.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sdkafstest-secondary.dfs.core.windows.net/\",\"web\":\"https://sdkafstest-secondary.z23.web.core.windows.net/\",\"blob\":\"https://sdkafstest-secondary.blob.core.windows.net/\",\"queue\":\"https://sdkafstest-secondary.queue.core.windows.net/\",\"table\":\"https://sdkafstest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.Storage/storageAccounts/sdkrgdiag\",\"name\":\"sdkrgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"DeleteBy\":\"02-2020\",\"owner\":\"sarath\",\"Purpose\":\" - Testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-27T04:45:04.9772496Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-12-27T04:45:04.9772496Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-12-27T04:45:04.9147308Z\",\"primaryEndpoints\":{\"blob\":\"https://sdkrgdiag.blob.core.windows.net/\",\"queue\":\"https://sdkrgdiag.queue.core.windows.net/\",\"table\":\"https://sdkrgdiag.table.core.windows.net/\",\"file\":\"https://sdkrgdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdiag\",\"name\":\"shrja2008groupdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"DeleteBy\":\"01-2021\",\"Mab - Used\":\"Yes\",\"Owner\":\"Shrja\",\"Purpose\":\"Testing\",\"Auto Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T11:18:41.1236065Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T11:18:41.1236065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-06T11:18:41.0298512Z\",\"primaryEndpoints\":{\"blob\":\"https://shrja2008groupdiag.blob.core.windows.net/\",\"queue\":\"https://shrja2008groupdiag.queue.core.windows.net/\",\"table\":\"https://shrja2008groupdiag.table.core.windows.net/\",\"file\":\"https://shrja2008groupdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdisks\",\"name\":\"shrja2008groupdisks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"DeleteBy\":\"01-2021\",\"Mab - Used\":\"Yes\",\"Owner\":\"Shrja\",\"Purpose\":\"Testing\",\"Auto Shutdown\":\"No\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T11:18:41.1079848Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-06T11:18:41.1079848Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-06T11:18:41.0298512Z\",\"primaryEndpoints\":{\"blob\":\"https://shrja2008groupdisks.blob.core.windows.net/\",\"queue\":\"https://shrja2008groupdisks.queue.core.windows.net/\",\"table\":\"https://shrja2008groupdisks.table.core.windows.net/\",\"file\":\"https://shrja2008groupdisks.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks\",\"name\":\"shswainrgdonotusedisks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"shswain\",\"Purpose\":\"Dev - Testing\",\"DeleteBy\":\"12-2022\",\"MAB Used\":\"Yes\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-16T11:17:49.3069111Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-04-16T11:17:49.3069111Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-04-16T11:17:49.2443619Z\",\"primaryEndpoints\":{\"blob\":\"https://shswainrgdonotusedisks.blob.core.windows.net/\",\"queue\":\"https://shswainrgdonotusedisks.queue.core.windows.net/\",\"table\":\"https://shswainrgdonotusedisks.table.core.windows.net/\",\"file\":\"https://shswainrgdonotusedisks.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/da1675centralus\",\"name\":\"da1675centralus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:11.5877561Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:11.5877561Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-08-01T05:09:12.0188738Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675centralus.blob.core.windows.net/\",\"queue\":\"https://da1675centralus.queue.core.windows.net/\",\"table\":\"https://da1675centralus.table.core.windows.net/\",\"file\":\"https://da1675centralus.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.Storage/storageAccounts/sdkrgdiag847\",\"name\":\"sdkrgdiag847\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{\"DeleteBy\":\"01-2025\",\"Owner\":\"sarath\",\"MABUsed\":\" - Yes\",\"Purpose\":\" BVT\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-02-26T12:47:05.8876435Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-02-26T12:47:05.8876435Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-02-26T12:47:05.8094858Z\",\"primaryEndpoints\":{\"blob\":\"https://sdkrgdiag847.blob.core.windows.net/\",\"queue\":\"https://sdkrgdiag847.queue.core.windows.net/\",\"table\":\"https://sdkrgdiag847.table.core.windows.net/\",\"file\":\"https://sdkrgdiag847.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southindia\",\"name\":\"da1675southindia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:13.0378185Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T03:00:13.0378185Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-08-25T10:19:59.6565378Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675southindia.blob.core.windows.net/\",\"queue\":\"https://da1675southindia.queue.core.windows.net/\",\"table\":\"https://da1675southindia.table.core.windows.net/\",\"file\":\"https://da1675southindia.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675westcentralus\",\"name\":\"da1675westcentralus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T23:20:44.7253932Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T23:20:44.7253932Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-13T01:41:16.5180904Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675westcentralus.blob.core.windows.net/\",\"queue\":\"https://da1675westcentralus.queue.core.windows.net/\",\"table\":\"https://da1675westcentralus.table.core.windows.net/\",\"file\":\"https://da1675westcentralus.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sagermanywc\",\"name\":\"sagermanywc\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"germanywestcentral\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"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-14T08:59:23.9938201Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-14T08:59:23.9938201Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-14T08:59:23.9156955Z\",\"primaryEndpoints\":{\"dfs\":\"https://sagermanywc.dfs.core.windows.net/\",\"web\":\"https://sagermanywc.z1.web.core.windows.net/\",\"blob\":\"https://sagermanywc.blob.core.windows.net/\",\"queue\":\"https://sagermanywc.queue.core.windows.net/\",\"table\":\"https://sagermanywc.table.core.windows.net/\",\"file\":\"https://sagermanywc.file.core.windows.net/\"},\"primaryLocation\":\"germanywestcentral\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"germanynorth\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://sagermanywc-secondary.dfs.core.windows.net/\",\"web\":\"https://sagermanywc-secondary.z1.web.core.windows.net/\",\"blob\":\"https://sagermanywc-secondary.blob.core.windows.net/\",\"queue\":\"https://sagermanywc-secondary.queue.core.windows.net/\",\"table\":\"https://sagermanywc-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/akneemastorageaccount\",\"name\":\"akneemastorageaccount\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"AutoShutdown\":\"No\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-06T05:54:15.0673408Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-11-06T05:54:15.0673408Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-11-06T05:54:14.9922856Z\",\"primaryEndpoints\":{\"dfs\":\"https://akneemastorageaccount.dfs.core.windows.net/\",\"web\":\"https://akneemastorageaccount.z3.web.core.windows.net/\",\"blob\":\"https://akneemastorageaccount.blob.core.windows.net/\",\"queue\":\"https://akneemastorageaccount.queue.core.windows.net/\",\"table\":\"https://akneemastorageaccount.table.core.windows.net/\",\"file\":\"https://akneemastorageaccount.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://akneemastorageaccount-secondary.dfs.core.windows.net/\",\"web\":\"https://akneemastorageaccount-secondary.z3.web.core.windows.net/\",\"blob\":\"https://akneemastorageaccount-secondary.blob.core.windows.net/\",\"queue\":\"https://akneemastorageaccount-secondary.queue.core.windows.net/\",\"table\":\"https://akneemastorageaccount-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/da1675eastus2euap\",\"name\":\"da1675eastus2euap\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-09-19T13:41:16.9306076Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-09-19T13:41:16.9306076Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-19T13:41:16.9246087Z\",\"primaryEndpoints\":{\"blob\":\"https://da1675eastus2euap.blob.core.windows.net/\",\"queue\":\"https://da1675eastus2euap.queue.core.windows.net/\",\"table\":\"https://da1675eastus2euap.table.core.windows.net/\",\"file\":\"https://da1675eastus2euap.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/mabblobbackuptest\",\"name\":\"mabblobbackuptest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"nilsha\",\"Delete By\":\"12-2099\",\"Purpose\":\"Testing\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-02-11T00:46:33.3841252Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-02-11T00:46:33.3841252Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-02-11T00:46:33.3365796Z\",\"primaryEndpoints\":{\"dfs\":\"https://mabblobbackuptest.dfs.core.windows.net/\",\"web\":\"https://mabblobbackuptest.z3.web.core.windows.net/\",\"blob\":\"https://mabblobbackuptest.blob.core.windows.net/\",\"queue\":\"https://mabblobbackuptest.queue.core.windows.net/\",\"table\":\"https://mabblobbackuptest.table.core.windows.net/\",\"file\":\"https://mabblobbackuptest.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://mabblobbackuptest-secondary.dfs.core.windows.net/\",\"web\":\"https://mabblobbackuptest-secondary.z3.web.core.windows.net/\",\"blob\":\"https://mabblobbackuptest-secondary.blob.core.windows.net/\",\"queue\":\"https://mabblobbackuptest-secondary.queue.core.windows.net/\",\"table\":\"https://mabblobbackuptest-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.Storage/storageAccounts/softdeletesa\",\"name\":\"softdeletesa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2euap\",\"tags\":{\"Owner\":\"sarath\",\"MABUsed\":\"Yes\",\"Purpose\":\" - Testing\",\"DeleteBy\":\"05-2021\"},\"properties\":{\"keyCreationTime\":{\"key1\":null,\"key2\":null},\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-12T08:03:11.5315566Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-12T08:03:11.5315566Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-12T08:03:11.4847211Z\",\"primaryEndpoints\":{\"dfs\":\"https://softdeletesa.dfs.core.windows.net/\",\"web\":\"https://softdeletesa.z3.web.core.windows.net/\",\"blob\":\"https://softdeletesa.blob.core.windows.net/\",\"queue\":\"https://softdeletesa.queue.core.windows.net/\",\"table\":\"https://softdeletesa.table.core.windows.net/\",\"file\":\"https://softdeletesa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centraluseuap\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://softdeletesa-secondary.dfs.core.windows.net/\",\"web\":\"https://softdeletesa-secondary.z3.web.core.windows.net/\",\"blob\":\"https://softdeletesa-secondary.blob.core.windows.net/\",\"queue\":\"https://softdeletesa-secondary.queue.core.windows.net/\",\"table\":\"https://softdeletesa-secondary.table.core.windows.net/\"}}}]}" - headers: - cache-control: - - no-cache - content-length: - - '71230' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Jun 2021 16:24:23 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: - - c1a35261-8c8a-48b3-8c9c-2e4733b23797 - - 47d67dfd-ccaf-4d84-bfab-a681f7dba144 - - aa25aa0d-1a67-416a-8d51-11d10b18dab4 - - 4d9b2896-8afd-489d-9286-59ce579672d3 - - 2aa96636-c071-4423-8245-774bb5ff0de0 - - c98d08e5-577e-4e26-884a-d765300177b9 - - 50a31752-1301-4043-a0d6-92f0685d76ff - - 14fc2ad9-f14c-4b2e-8752-e7be01f6f27d - - 7fb9743b-9ce0-4525-bf42-6cb460fb0e7b - - e53915dd-12b6-479e-94fe-a78500cf1bc8 - 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.25.0 azsdk-python-azure-mgmt-storage/18.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=2021-04-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2021-06-21T16:19:42.2140210Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T16:19:42.2140210Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '380' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 16:24:23 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.25.0 - x-ms-date: - - Mon, 21 Jun 2021 16:24:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://clitest000007.blob.core.windows.net/clitestvm3qcuc-407743082bf045b1aa48bb72054991fd/config-clitestvm3qcuc-995ae1d8-5a3d-4147-a53d-6ec226473fdf.json - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-length: - - '4096' - content-type: - - application/octet-stream - date: - - Mon, 21 Jun 2021 16:24:24 GMT - etag: - - '"0x8D934D0F2FFD45C"' - last-modified: - - Mon, 21 Jun 2021 16:23:48 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: - - Mon, 21 Jun 2021 16:23:48 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' + - '149' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -21416,37 +12879,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-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":"2021-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.7022643S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2515' + - '1198' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:24 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -21470,36 +12936,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-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/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.176384S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1197' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:25 GMT + - Tue, 13 Jul 2021 15:14: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: @@ -21509,7 +12979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -21523,37 +12993,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-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":"2021-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34.5933269S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2515' + - '1199' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:25 GMT + - Tue, 13 Jul 2021 15:15: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: @@ -21563,7 +13036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -21577,36 +13050,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-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/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M5.1425118S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1200' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:25 GMT + - Tue, 13 Jul 2021 15:15: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: @@ -21616,7 +13093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -21630,39 +13107,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/6503856810886?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-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/6503856810886","name":"6503856810886","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T14:17:29.2407055Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M35.5920478S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1449' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:26 GMT + - Tue, 13 Jul 2021 15:16: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: @@ -21672,7 +13150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -21686,33 +13164,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - 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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-06-21T14%3A14%3A30.5085878Z''\"","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/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M6.0618855S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1200' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:26 GMT + - Tue, 13 Jul 2021 15:16: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: @@ -21721,6 +13206,10 @@ 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 @@ -21732,42 +13221,55 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-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/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M36.655363S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '312' + - '1200' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 21 Jun 2021 16:24:26 GMT + - Tue, 13 Jul 2021 15:17: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-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -21776,33 +13278,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-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-06-21T16:19:42.2140210Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T16:19:42.1202285Z","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/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M7.1007786S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '974' + - '1200' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:27 GMT + - Tue, 13 Jul 2021 15:17: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: @@ -21811,66 +13320,70 @@ interactions: - 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: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "6503856810886", "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: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive - Content-Length: - - '680' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/6503856810886/restore?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M37.5928133S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' 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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '1201' + content-type: + - application/json date: - - Mon, 21 Jun 2021 16:24:28 GMT + - Tue, 13 Jul 2021 15:18:05 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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + 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: @@ -21879,36 +13392,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M8.3804648S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1200' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:28 GMT + - Tue, 13 Jul 2021 15:18: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: @@ -21918,7 +13435,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -21932,36 +13449,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","status":"Succeeded","startTime":"2021-06-21T16:24:28.3621816Z","endTime":"2021-06-21T16:24:28.3621816Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M38.7773372S","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 ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:29 GMT + - Tue, 13 Jul 2021 15:19: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: @@ -21971,7 +13492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -21985,33 +13506,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.0623937S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M9.3947272S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1198' + - '1200' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:31 GMT + - Tue, 13 Jul 2021 15:19:36 GMT expires: - '-1' pragma: @@ -22028,7 +13549,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -22048,27 +13569,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.6876469S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M39.8644808S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1198' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:32 GMT + - Tue, 13 Jul 2021 15:20:07 GMT expires: - '-1' pragma: @@ -22085,7 +13606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '137' x-powered-by: - ASP.NET status: @@ -22105,27 +13626,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.1135005S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M10.3320475S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1198' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:24:32 GMT + - Tue, 13 Jul 2021 15:20:37 GMT expires: - '-1' pragma: @@ -22142,7 +13663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '136' x-powered-by: - ASP.NET status: @@ -22162,27 +13683,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34.5007188S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M40.7863842S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1199' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:25:02 GMT + - Tue, 13 Jul 2021 15:21:08 GMT expires: - '-1' pragma: @@ -22199,7 +13720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '135' x-powered-by: - ASP.NET status: @@ -22219,27 +13740,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M4.9521448S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M11.5881282S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:25:33 GMT + - Tue, 13 Jul 2021 15:21:39 GMT expires: - '-1' pragma: @@ -22256,7 +13777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '134' x-powered-by: - ASP.NET status: @@ -22276,18 +13797,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M35.4502566S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M42.1125968S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -22296,7 +13817,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:26:03 GMT + - Tue, 13 Jul 2021 15:22:09 GMT expires: - '-1' pragma: @@ -22313,7 +13834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '133' x-powered-by: - ASP.NET status: @@ -22333,27 +13854,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M6.0717146S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M12.5530756S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:26:34 GMT + - Tue, 13 Jul 2021 15:22:40 GMT expires: - '-1' pragma: @@ -22370,7 +13891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '132' x-powered-by: - ASP.NET status: @@ -22390,18 +13911,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M36.4666731S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M43.2417253S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -22410,7 +13931,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:27:04 GMT + - Tue, 13 Jul 2021 15:23:10 GMT expires: - '-1' pragma: @@ -22427,7 +13948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '131' x-powered-by: - ASP.NET status: @@ -22447,27 +13968,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M6.8480877S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M13.7763193S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 16:27:34 GMT + - Tue, 13 Jul 2021 15:23:40 GMT expires: - '-1' pragma: @@ -22484,7 +14005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '130' x-powered-by: - ASP.NET status: @@ -22504,18 +14025,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M37.3983425S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M44.2506132S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -22524,7 +14045,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:28:05 GMT + - Tue, 13 Jul 2021 15:24:11 GMT expires: - '-1' pragma: @@ -22541,7 +14062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '129' x-powered-by: - ASP.NET status: @@ -22561,27 +14082,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M7.8523068S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M14.7755283S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 16:28:35 GMT + - Tue, 13 Jul 2021 15:24:42 GMT expires: - '-1' pragma: @@ -22598,7 +14119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '128' x-powered-by: - ASP.NET status: @@ -22618,27 +14139,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M38.5220415S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M45.2510541S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 16:29:07 GMT + - Tue, 13 Jul 2021 15:25:12 GMT expires: - '-1' pragma: @@ -22655,7 +14176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '127' x-powered-by: - ASP.NET status: @@ -22675,27 +14196,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M9.0147573S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M15.7506812S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 16:29:36 GMT + - Tue, 13 Jul 2021 15:25:43 GMT expires: - '-1' pragma: @@ -22712,7 +14233,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '126' x-powered-by: - ASP.NET status: @@ -22732,27 +14253,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M39.5105736S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M46.2923971S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 16:30:08 GMT + - Tue, 13 Jul 2021 15:26:13 GMT expires: - '-1' pragma: @@ -22769,7 +14290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '125' x-powered-by: - ASP.NET status: @@ -22789,27 +14310,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M10.0430976S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M17.623119S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1306' content-type: - application/json date: - - Mon, 21 Jun 2021 16:30:38 GMT + - Tue, 13 Jul 2021 15:26:44 GMT expires: - '-1' pragma: @@ -22826,7 +14348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '124' x-powered-by: - ASP.NET status: @@ -22846,27 +14368,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M40.5153567S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M48.0401245S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:31:08 GMT + - Tue, 13 Jul 2021 15:27:15 GMT expires: - '-1' pragma: @@ -22883,7 +14406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '123' x-powered-by: - ASP.NET status: @@ -22903,27 +14426,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M10.9636743S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M18.7290415S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:31:39 GMT + - Tue, 13 Jul 2021 15:27:46 GMT expires: - '-1' pragma: @@ -22940,7 +14464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '122' x-powered-by: - ASP.NET status: @@ -22960,27 +14484,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M41.4084438S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M49.2328214S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:32:10 GMT + - Tue, 13 Jul 2021 15:28:16 GMT expires: - '-1' pragma: @@ -22997,7 +14522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '121' x-powered-by: - ASP.NET status: @@ -23017,27 +14542,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M11.7972741S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M19.8616236S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:32:40 GMT + - Tue, 13 Jul 2021 15:28:47 GMT expires: - '-1' pragma: @@ -23054,7 +14580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '120' x-powered-by: - ASP.NET status: @@ -23074,27 +14600,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M42.3078288S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M50.3759742S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:33:10 GMT + - Tue, 13 Jul 2021 15:29:17 GMT expires: - '-1' pragma: @@ -23111,7 +14638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '119' x-powered-by: - ASP.NET status: @@ -23131,27 +14658,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M12.7511404S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M20.8489378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:33:41 GMT + - Tue, 13 Jul 2021 15:29:47 GMT expires: - '-1' pragma: @@ -23168,7 +14696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '118' x-powered-by: - ASP.NET status: @@ -23188,27 +14716,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M43.1679797S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M51.2851898S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:34:11 GMT + - Tue, 13 Jul 2021 15:30:18 GMT expires: - '-1' pragma: @@ -23225,7 +14754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '117' x-powered-by: - ASP.NET status: @@ -23245,27 +14774,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M13.5976666S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M21.8084947S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:34:42 GMT + - Tue, 13 Jul 2021 15:30:49 GMT expires: - '-1' pragma: @@ -23282,7 +14812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '116' x-powered-by: - ASP.NET status: @@ -23302,27 +14832,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M44.0552614S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M52.251758S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"67.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":53.0,"estimatedRemainingDuration":"PT10M38.4617396S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1306' content-type: - application/json date: - - Mon, 21 Jun 2021 16:35:12 GMT + - Tue, 13 Jul 2021 15:31:19 GMT expires: - '-1' pragma: @@ -23339,7 +14870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '115' x-powered-by: - ASP.NET status: @@ -23359,27 +14890,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M14.4814242S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M22.8353207S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:35:43 GMT + - Tue, 13 Jul 2021 15:31:50 GMT expires: - '-1' pragma: @@ -23396,7 +14928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '114' x-powered-by: - ASP.NET status: @@ -23416,27 +14948,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M45.0319093S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M53.5284744S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:36:13 GMT + - Tue, 13 Jul 2021 15:32:20 GMT expires: - '-1' pragma: @@ -23453,7 +14986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '113' x-powered-by: - ASP.NET status: @@ -23473,19 +15006,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M15.4769448S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M23.936629S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -23494,7 +15027,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:36:44 GMT + - Tue, 13 Jul 2021 15:32:51 GMT expires: - '-1' pragma: @@ -23511,7 +15044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '112' x-powered-by: - ASP.NET status: @@ -23531,19 +15064,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M45.8668975S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M54.498496S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -23552,7 +15085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:37:14 GMT + - Tue, 13 Jul 2021 15:33:21 GMT expires: - '-1' pragma: @@ -23569,7 +15102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '111' x-powered-by: - ASP.NET status: @@ -23589,28 +15122,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M16.4243137S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M24.9616747S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:37:44 GMT + - Tue, 13 Jul 2021 15:33:52 GMT expires: - '-1' pragma: @@ -23627,7 +15160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '110' x-powered-by: - ASP.NET status: @@ -23647,28 +15180,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M47.189796S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M55.6547391S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1305' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:38:15 GMT + - Tue, 13 Jul 2021 15:34:23 GMT expires: - '-1' pragma: @@ -23685,7 +15218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '109' x-powered-by: - ASP.NET status: @@ -23705,28 +15238,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M17.5977463S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M26.0673397S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:38:46 GMT + - Tue, 13 Jul 2021 15:34:53 GMT expires: - '-1' pragma: @@ -23743,7 +15276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '108' x-powered-by: - ASP.NET status: @@ -23763,28 +15296,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M48.0038137S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M56.5029969S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 16:39:16 GMT + - Tue, 13 Jul 2021 15:35:23 GMT expires: - '-1' pragma: @@ -23801,7 +15334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '107' x-powered-by: - ASP.NET status: @@ -23821,19 +15354,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M18.4267644S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M26.976676S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -23842,7 +15375,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:39:47 GMT + - Tue, 13 Jul 2021 15:35:54 GMT expires: - '-1' pragma: @@ -23859,7 +15392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '106' x-powered-by: - ASP.NET status: @@ -23879,19 +15412,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M48.8443017S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M57.406908S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.0901272S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -23900,7 +15433,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:40:16 GMT + - Tue, 13 Jul 2021 15:36:24 GMT expires: - '-1' pragma: @@ -23917,7 +15450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '105' x-powered-by: - ASP.NET status: @@ -23937,28 +15470,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M19.3710312S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M28.0832926S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:40:47 GMT + - Tue, 13 Jul 2021 15:36:55 GMT expires: - '-1' pragma: @@ -23975,7 +15508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '104' x-powered-by: - ASP.NET status: @@ -23995,28 +15528,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M49.9190679S","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-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M58.5680843S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.1090703S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:41:18 GMT + - Tue, 13 Jul 2021 15:37:25 GMT expires: - '-1' pragma: @@ -24033,7 +15566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '103' x-powered-by: - ASP.NET status: @@ -24053,28 +15586,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M20.3861542S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M29.0517978S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:41:48 GMT + - Tue, 13 Jul 2021 15:37:56 GMT expires: - '-1' pragma: @@ -24091,7 +15624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '102' x-powered-by: - ASP.NET status: @@ -24111,28 +15644,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M50.8316565S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M59.5105924S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:42:19 GMT + - Tue, 13 Jul 2021 15:38:27 GMT expires: - '-1' pragma: @@ -24149,7 +15682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '101' x-powered-by: - ASP.NET status: @@ -24169,28 +15702,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M21.598723S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M29.9037754S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:42:49 GMT + - Tue, 13 Jul 2021 15:38:57 GMT expires: - '-1' pragma: @@ -24207,7 +15740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '100' x-powered-by: - ASP.NET status: @@ -24227,19 +15760,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M52.0060123S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M0.3470625S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24248,7 +15781,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:43:19 GMT + - Tue, 13 Jul 2021 15:39:28 GMT expires: - '-1' pragma: @@ -24265,7 +15798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '99' x-powered-by: - ASP.NET status: @@ -24285,28 +15818,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M22.4703123S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M30.7519773S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:43:50 GMT + - Tue, 13 Jul 2021 15:39:58 GMT expires: - '-1' pragma: @@ -24323,7 +15856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '98' x-powered-by: - ASP.NET status: @@ -24343,19 +15876,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M52.9172823S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M1.1503544S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24364,7 +15897,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:44:21 GMT + - Tue, 13 Jul 2021 15:40:28 GMT expires: - '-1' pragma: @@ -24381,7 +15914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '97' x-powered-by: - ASP.NET status: @@ -24401,28 +15934,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M23.3232073S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M31.6283151S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:44:51 GMT + - Tue, 13 Jul 2021 15:40:59 GMT expires: - '-1' pragma: @@ -24439,7 +15972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '96' x-powered-by: - ASP.NET status: @@ -24459,19 +15992,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M53.8577784S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M2.3603378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.8676429S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24480,7 +16013,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:45:22 GMT + - Tue, 13 Jul 2021 15:41:29 GMT expires: - '-1' pragma: @@ -24497,7 +16030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '95' x-powered-by: - ASP.NET status: @@ -24517,28 +16050,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M24.3172648S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M32.7824268S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:45:52 GMT + - Tue, 13 Jul 2021 15:42:00 GMT expires: - '-1' pragma: @@ -24555,7 +16088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '94' x-powered-by: - ASP.NET status: @@ -24575,19 +16108,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M55.0843203S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M3.2559497S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M4.2530935S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24596,7 +16129,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:46:23 GMT + - Tue, 13 Jul 2021 15:42:30 GMT expires: - '-1' pragma: @@ -24613,7 +16146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '93' x-powered-by: - ASP.NET status: @@ -24633,28 +16166,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M25.5330102S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M33.6812699S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:46:53 GMT + - Tue, 13 Jul 2021 15:43:01 GMT expires: - '-1' pragma: @@ -24671,7 +16204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '92' x-powered-by: - ASP.NET status: @@ -24691,19 +16224,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M56.1197881S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M4.1261515S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24712,7 +16245,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:47:24 GMT + - Tue, 13 Jul 2021 15:43:31 GMT expires: - '-1' pragma: @@ -24729,7 +16262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '91' x-powered-by: - ASP.NET status: @@ -24749,28 +16282,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M26.596236S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M34.5864757S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:47:54 GMT + - Tue, 13 Jul 2021 15:44:02 GMT expires: - '-1' pragma: @@ -24787,7 +16320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '90' x-powered-by: - ASP.NET status: @@ -24807,19 +16340,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M57.0322354S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M5.0346204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24828,7 +16361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:48:24 GMT + - Tue, 13 Jul 2021 15:44:32 GMT expires: - '-1' pragma: @@ -24845,7 +16378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '89' x-powered-by: - ASP.NET status: @@ -24865,28 +16398,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M27.6561422S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M35.4795088S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:48:56 GMT + - Tue, 13 Jul 2021 15:45:03 GMT expires: - '-1' pragma: @@ -24903,7 +16436,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '88' x-powered-by: - ASP.NET status: @@ -24923,19 +16456,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M58.1686276S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M5.8895287S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache @@ -24944,7 +16477,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:49:26 GMT + - Tue, 13 Jul 2021 15:45:33 GMT expires: - '-1' pragma: @@ -24961,7 +16494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '87' x-powered-by: - ASP.NET status: @@ -24981,28 +16514,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M29.0300673S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M36.3531971S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.53 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M41.6442008S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T15:14:27.6235792Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 16:49:57 GMT + - Tue, 13 Jul 2021 15:46:04 GMT expires: - '-1' pragma: @@ -25019,7 +16552,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '86' x-powered-by: - ASP.NET status: @@ -25039,28 +16572,31 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M59.569219S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M6.4998645S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM","Config Blob Name":"config-clitestvmdl2ii-bc8b717e-3769-4766-95d4-bd9c78286937.json","Config + Blob Container Name":"clitestvmdl2ii-0cebcf4704bf467194831e1a802d57f5","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-0cebcf4704bf467194831e1a802d57f5/config-clitestvmdl2ii-bc8b717e-3769-4766-95d4-bd9c78286937.json","Template + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-0cebcf4704bf467194831e1a802d57f5/azuredeploybc8b717e-3769-4766-95d4-bd9c78286937.json"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:14:27.8094899Z","endTime":"2021-07-13T15:46:34.3093544Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1878' content-type: - application/json date: - - Mon, 21 Jun 2021 16:50:27 GMT + - Tue, 13 Jul 2021 15:46:34 GMT expires: - '-1' pragma: @@ -25077,7 +16613,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '85' x-powered-by: - ASP.NET status: @@ -25091,34 +16627,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M29.9839663S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/bc8b717e-3769-4766-95d4-bd9c78286937","name":"bc8b717e-3769-4766-95d4-bd9c78286937","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M6.4998645S","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 ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + point time ":"7/13/2021 2:27:30 PM","Config Blob Name":"config-clitestvmdl2ii-bc8b717e-3769-4766-95d4-bd9c78286937.json","Config + Blob Container Name":"clitestvmdl2ii-0cebcf4704bf467194831e1a802d57f5","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-0cebcf4704bf467194831e1a802d57f5/config-clitestvmdl2ii-bc8b717e-3769-4766-95d4-bd9c78286937.json","Template + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmdl2ii-0cebcf4704bf467194831e1a802d57f5/azuredeploybc8b717e-3769-4766-95d4-bd9c78286937.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T15:14:27.6235792Z","endTime":"2021-07-13T15:46:34.1234437Z","activityId":"ff43ba12-e3ec-11eb-833d-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1862' content-type: - application/json date: - - Mon, 21 Jun 2021 16:50:58 GMT + - Tue, 13 Jul 2021 15:47:05 GMT expires: - '-1' pragma: @@ -25135,7 +16674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '64' x-powered-by: - ASP.NET status: @@ -25149,41 +16688,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2021-01-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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M0.3927931S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.51 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery - point time ":"6/21/2021 2:17:29 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M23.082808S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T16:24:28.3621816Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + 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: - - '1306' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 16:51:29 GMT + - Tue, 13 Jul 2021 15:47:05 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -25193,7 +16727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '148' x-powered-by: - ASP.NET status: @@ -25207,44 +16741,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M5.9066757S","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 ":"6/21/2021 2:17:29 PM","Config Blob Name":"config-clitestvm3qcuc-6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c.json","Config - Blob Container Name":"clitestvm3qcuc-814a74b9f94543dbb88f3ad828df9b38","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-814a74b9f94543dbb88f3ad828df9b38/config-clitestvm3qcuc-6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c.json","Template - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-814a74b9f94543dbb88f3ad828df9b38/azuredeploy6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T16:24:28.3621816Z","endTime":"2021-06-21T16:51:34.2688573Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1862' + - '2515' content-type: - application/json date: - - Mon, 21 Jun 2021 16:51:58 GMT + - Tue, 13 Jul 2021 15:47: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: @@ -25254,7 +16781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '147' x-powered-by: - ASP.NET status: @@ -25268,44 +16795,38 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2021-01-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/6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","name":"6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M5.9066757S","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 ":"6/21/2021 2:17:29 PM","Config Blob Name":"config-clitestvm3qcuc-6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c.json","Config - Blob Container Name":"clitestvm3qcuc-814a74b9f94543dbb88f3ad828df9b38","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-814a74b9f94543dbb88f3ad828df9b38/config-clitestvm3qcuc-6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c.json","Template - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvm3qcuc-814a74b9f94543dbb88f3ad828df9b38/azuredeploy6dbdcc05-aaf7-46d0-91b5-5a420c8eff8c.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T16:24:28.3621816Z","endTime":"2021-06-21T16:51:34.2688573Z","activityId":"245d210c-d2ad-11eb-bce5-c8f750f92764"}}' + 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-07-13T14:27:26.6013929Z","protectedItemDataId":"17592257919720","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-07-13T14:27:30.4342406Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1862' + - '2515' content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:30 GMT + - Tue, 13 Jul 2021 15:47: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: @@ -25315,7 +16836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -25329,51 +16850,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2021-01-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: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1220' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 16:52:30 GMT + - Tue, 13 Jul 2021 15:47:07 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperationResults/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '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: @@ -25382,31 +16902,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$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/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-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":"2021-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2515' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:31 GMT + - Tue, 13 Jul 2021 15:47:08 GMT expires: - '-1' pragma: @@ -25422,7 +16942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -25443,25 +16963,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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=2021-01-01&$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/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-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":"2021-06-21T14:17:25.9938735Z","protectedItemDataId":"35185591218593","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-06-21T14:17:29.2407055Z","isArchiveEnabled":false}}]}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2515' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:32 GMT + - Tue, 13 Jul 2021 15:47:09 GMT expires: - '-1' pragma: @@ -25477,7 +16996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -25494,47 +17013,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 16:52:32 GMT + - Tue, 13 Jul 2021 15:47:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperationResults/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + 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: @@ -25550,15 +17071,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25567,7 +17088,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:33 GMT + - Tue, 13 Jul 2021 15:47:11 GMT expires: - '-1' pragma: @@ -25583,7 +17104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -25604,15 +17125,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25621,7 +17142,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:35 GMT + - Tue, 13 Jul 2021 15:47:12 GMT expires: - '-1' pragma: @@ -25637,7 +17158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -25658,15 +17179,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25675,7 +17196,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:36 GMT + - Tue, 13 Jul 2021 15:47:14 GMT expires: - '-1' pragma: @@ -25691,7 +17212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '142' x-powered-by: - ASP.NET status: @@ -25712,15 +17233,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25729,7 +17250,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:37 GMT + - Tue, 13 Jul 2021 15:47:15 GMT expires: - '-1' pragma: @@ -25745,7 +17266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: @@ -25766,15 +17287,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25783,7 +17304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:39 GMT + - Tue, 13 Jul 2021 15:47:16 GMT expires: - '-1' pragma: @@ -25799,7 +17320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '140' x-powered-by: - ASP.NET status: @@ -25820,15 +17341,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25837,7 +17358,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:40 GMT + - Tue, 13 Jul 2021 15:47:17 GMT expires: - '-1' pragma: @@ -25853,7 +17374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '139' x-powered-by: - ASP.NET status: @@ -25874,15 +17395,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25891,7 +17412,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:41 GMT + - Tue, 13 Jul 2021 15:47:18 GMT expires: - '-1' pragma: @@ -25907,7 +17428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '138' x-powered-by: - ASP.NET status: @@ -25928,15 +17449,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25945,7 +17466,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:42 GMT + - Tue, 13 Jul 2021 15:47:20 GMT expires: - '-1' pragma: @@ -25961,7 +17482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '137' x-powered-by: - ASP.NET status: @@ -25982,15 +17503,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -25999,7 +17520,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:44 GMT + - Tue, 13 Jul 2021 15:47:21 GMT expires: - '-1' pragma: @@ -26015,7 +17536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '136' x-powered-by: - ASP.NET status: @@ -26036,15 +17557,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26053,7 +17574,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:45 GMT + - Tue, 13 Jul 2021 15:47:22 GMT expires: - '-1' pragma: @@ -26069,7 +17590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '135' x-powered-by: - ASP.NET status: @@ -26090,15 +17611,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26107,7 +17628,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:46 GMT + - Tue, 13 Jul 2021 15:47:23 GMT expires: - '-1' pragma: @@ -26123,7 +17644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '134' x-powered-by: - ASP.NET status: @@ -26144,15 +17665,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26161,7 +17682,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:48 GMT + - Tue, 13 Jul 2021 15:47:25 GMT expires: - '-1' pragma: @@ -26177,7 +17698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '133' x-powered-by: - ASP.NET status: @@ -26198,15 +17719,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26215,7 +17736,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:49 GMT + - Tue, 13 Jul 2021 15:47:26 GMT expires: - '-1' pragma: @@ -26231,7 +17752,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '132' x-powered-by: - ASP.NET status: @@ -26252,15 +17773,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26269,7 +17790,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:50 GMT + - Tue, 13 Jul 2021 15:47:27 GMT expires: - '-1' pragma: @@ -26285,7 +17806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '131' x-powered-by: - ASP.NET status: @@ -26306,15 +17827,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26323,7 +17844,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:51 GMT + - Tue, 13 Jul 2021 15:47:28 GMT expires: - '-1' pragma: @@ -26339,7 +17860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '130' x-powered-by: - ASP.NET status: @@ -26360,15 +17881,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26377,7 +17898,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:52 GMT + - Tue, 13 Jul 2021 15:47:29 GMT expires: - '-1' pragma: @@ -26393,7 +17914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '129' x-powered-by: - ASP.NET status: @@ -26414,15 +17935,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26431,7 +17952,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:54 GMT + - Tue, 13 Jul 2021 15:47:31 GMT expires: - '-1' pragma: @@ -26447,7 +17968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '128' x-powered-by: - ASP.NET status: @@ -26468,15 +17989,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26485,7 +18006,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:55 GMT + - Tue, 13 Jul 2021 15:47:33 GMT expires: - '-1' pragma: @@ -26501,7 +18022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '127' x-powered-by: - ASP.NET status: @@ -26522,15 +18043,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26539,7 +18060,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:56 GMT + - Tue, 13 Jul 2021 15:47:34 GMT expires: - '-1' pragma: @@ -26555,7 +18076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '126' x-powered-by: - ASP.NET status: @@ -26576,15 +18097,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26593,7 +18114,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:57 GMT + - Tue, 13 Jul 2021 15:47:35 GMT expires: - '-1' pragma: @@ -26609,7 +18130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '125' x-powered-by: - ASP.NET status: @@ -26630,15 +18151,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26647,7 +18168,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:52:59 GMT + - Tue, 13 Jul 2021 15:47:37 GMT expires: - '-1' pragma: @@ -26663,7 +18184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '124' x-powered-by: - ASP.NET status: @@ -26684,15 +18205,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26701,7 +18222,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:00 GMT + - Tue, 13 Jul 2021 15:47:38 GMT expires: - '-1' pragma: @@ -26717,7 +18238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '123' x-powered-by: - ASP.NET status: @@ -26738,15 +18259,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26755,7 +18276,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:01 GMT + - Tue, 13 Jul 2021 15:47:39 GMT expires: - '-1' pragma: @@ -26771,7 +18292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '122' x-powered-by: - ASP.NET status: @@ -26792,15 +18313,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26809,7 +18330,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:02 GMT + - Tue, 13 Jul 2021 15:47:40 GMT expires: - '-1' pragma: @@ -26825,7 +18346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '121' x-powered-by: - ASP.NET status: @@ -26846,15 +18367,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26863,7 +18384,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:04 GMT + - Tue, 13 Jul 2021 15:47:42 GMT expires: - '-1' pragma: @@ -26879,7 +18400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '120' x-powered-by: - ASP.NET status: @@ -26900,15 +18421,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26917,7 +18438,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:05 GMT + - Tue, 13 Jul 2021 15:47:43 GMT expires: - '-1' pragma: @@ -26933,7 +18454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '119' x-powered-by: - ASP.NET status: @@ -26954,15 +18475,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -26971,7 +18492,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:06 GMT + - Tue, 13 Jul 2021 15:47:44 GMT expires: - '-1' pragma: @@ -26987,7 +18508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '118' x-powered-by: - ASP.NET status: @@ -27008,15 +18529,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27025,7 +18546,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:07 GMT + - Tue, 13 Jul 2021 15:47:45 GMT expires: - '-1' pragma: @@ -27041,7 +18562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '117' x-powered-by: - ASP.NET status: @@ -27062,15 +18583,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27079,7 +18600,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:09 GMT + - Tue, 13 Jul 2021 15:47:46 GMT expires: - '-1' pragma: @@ -27095,7 +18616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '116' x-powered-by: - ASP.NET status: @@ -27116,15 +18637,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27133,7 +18654,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:10 GMT + - Tue, 13 Jul 2021 15:47:48 GMT expires: - '-1' pragma: @@ -27149,7 +18670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '115' x-powered-by: - ASP.NET status: @@ -27170,15 +18691,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27187,7 +18708,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:11 GMT + - Tue, 13 Jul 2021 15:47:49 GMT expires: - '-1' pragma: @@ -27203,7 +18724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '114' x-powered-by: - ASP.NET status: @@ -27224,15 +18745,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27241,7 +18762,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:13 GMT + - Tue, 13 Jul 2021 15:47:50 GMT expires: - '-1' pragma: @@ -27257,7 +18778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '113' x-powered-by: - ASP.NET status: @@ -27278,15 +18799,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27295,7 +18816,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:14 GMT + - Tue, 13 Jul 2021 15:47:51 GMT expires: - '-1' pragma: @@ -27311,7 +18832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '112' x-powered-by: - ASP.NET status: @@ -27332,15 +18853,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27349,7 +18870,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:15 GMT + - Tue, 13 Jul 2021 15:47:53 GMT expires: - '-1' pragma: @@ -27365,7 +18886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '111' x-powered-by: - ASP.NET status: @@ -27386,15 +18907,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27403,7 +18924,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:16 GMT + - Tue, 13 Jul 2021 15:47:54 GMT expires: - '-1' pragma: @@ -27419,7 +18940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '110' x-powered-by: - ASP.NET status: @@ -27440,15 +18961,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27457,7 +18978,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:17 GMT + - Tue, 13 Jul 2021 15:47:55 GMT expires: - '-1' pragma: @@ -27473,7 +18994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '109' x-powered-by: - ASP.NET status: @@ -27494,15 +19015,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27511,7 +19032,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:19 GMT + - Tue, 13 Jul 2021 15:47:56 GMT expires: - '-1' pragma: @@ -27527,7 +19048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '108' x-powered-by: - ASP.NET status: @@ -27548,15 +19069,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27565,7 +19086,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:20 GMT + - Tue, 13 Jul 2021 15:47:57 GMT expires: - '-1' pragma: @@ -27581,7 +19102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '107' x-powered-by: - ASP.NET status: @@ -27602,15 +19123,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27619,7 +19140,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:21 GMT + - Tue, 13 Jul 2021 15:47:59 GMT expires: - '-1' pragma: @@ -27635,7 +19156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '106' x-powered-by: - ASP.NET status: @@ -27656,15 +19177,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27673,7 +19194,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:22 GMT + - Tue, 13 Jul 2021 15:48:00 GMT expires: - '-1' pragma: @@ -27689,7 +19210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '105' x-powered-by: - ASP.NET status: @@ -27710,15 +19231,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27727,7 +19248,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:25 GMT + - Tue, 13 Jul 2021 15:48:01 GMT expires: - '-1' pragma: @@ -27743,7 +19264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '104' x-powered-by: - ASP.NET status: @@ -27764,15 +19285,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27781,7 +19302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:26 GMT + - Tue, 13 Jul 2021 15:48:02 GMT expires: - '-1' pragma: @@ -27797,7 +19318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '103' x-powered-by: - ASP.NET status: @@ -27818,15 +19339,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27835,7 +19356,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:27 GMT + - Tue, 13 Jul 2021 15:48:04 GMT expires: - '-1' pragma: @@ -27851,7 +19372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '102' x-powered-by: - ASP.NET status: @@ -27872,15 +19393,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27889,7 +19410,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:29 GMT + - Tue, 13 Jul 2021 15:48:05 GMT expires: - '-1' pragma: @@ -27905,7 +19426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '101' x-powered-by: - ASP.NET status: @@ -27926,15 +19447,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27943,7 +19464,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:30 GMT + - Tue, 13 Jul 2021 15:48:06 GMT expires: - '-1' pragma: @@ -27959,7 +19480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '100' x-powered-by: - ASP.NET status: @@ -27980,15 +19501,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -27997,7 +19518,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:31 GMT + - Tue, 13 Jul 2021 15:48:07 GMT expires: - '-1' pragma: @@ -28013,7 +19534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '99' x-powered-by: - ASP.NET status: @@ -28034,15 +19555,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28051,7 +19572,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:32 GMT + - Tue, 13 Jul 2021 15:48:09 GMT expires: - '-1' pragma: @@ -28067,7 +19588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '98' x-powered-by: - ASP.NET status: @@ -28088,15 +19609,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28105,7 +19626,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:34 GMT + - Tue, 13 Jul 2021 15:48:10 GMT expires: - '-1' pragma: @@ -28121,7 +19642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '97' x-powered-by: - ASP.NET status: @@ -28142,15 +19663,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28159,7 +19680,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:36 GMT + - Tue, 13 Jul 2021 15:48:11 GMT expires: - '-1' pragma: @@ -28175,7 +19696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '96' x-powered-by: - ASP.NET status: @@ -28196,15 +19717,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28213,7 +19734,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:37 GMT + - Tue, 13 Jul 2021 15:48:12 GMT expires: - '-1' pragma: @@ -28229,7 +19750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '95' x-powered-by: - ASP.NET status: @@ -28250,15 +19771,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28267,7 +19788,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:38 GMT + - Tue, 13 Jul 2021 15:48:13 GMT expires: - '-1' pragma: @@ -28283,7 +19804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '94' x-powered-by: - ASP.NET status: @@ -28304,15 +19825,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28321,7 +19842,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:39 GMT + - Tue, 13 Jul 2021 15:48:15 GMT expires: - '-1' pragma: @@ -28337,7 +19858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '93' x-powered-by: - ASP.NET status: @@ -28358,15 +19879,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28375,7 +19896,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:40 GMT + - Tue, 13 Jul 2021 15:48:17 GMT expires: - '-1' pragma: @@ -28391,7 +19912,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '92' x-powered-by: - ASP.NET status: @@ -28412,15 +19933,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28429,7 +19950,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:42 GMT + - Tue, 13 Jul 2021 15:48:18 GMT expires: - '-1' pragma: @@ -28445,7 +19966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '91' x-powered-by: - ASP.NET status: @@ -28466,15 +19987,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28483,7 +20004,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:43 GMT + - Tue, 13 Jul 2021 15:48:19 GMT expires: - '-1' pragma: @@ -28499,7 +20020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '90' x-powered-by: - ASP.NET status: @@ -28520,15 +20041,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28537,7 +20058,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:45 GMT + - Tue, 13 Jul 2021 15:48:20 GMT expires: - '-1' pragma: @@ -28553,7 +20074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '89' x-powered-by: - ASP.NET status: @@ -28574,15 +20095,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28591,7 +20112,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:46 GMT + - Tue, 13 Jul 2021 15:48:21 GMT expires: - '-1' pragma: @@ -28607,7 +20128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '88' x-powered-by: - ASP.NET status: @@ -28628,15 +20149,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28645,7 +20166,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:47 GMT + - Tue, 13 Jul 2021 15:48:23 GMT expires: - '-1' pragma: @@ -28661,7 +20182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '87' x-powered-by: - ASP.NET status: @@ -28682,15 +20203,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28699,7 +20220,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:48 GMT + - Tue, 13 Jul 2021 15:48:24 GMT expires: - '-1' pragma: @@ -28715,7 +20236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '86' x-powered-by: - ASP.NET status: @@ -28736,15 +20257,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28753,7 +20274,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:50 GMT + - Tue, 13 Jul 2021 15:48:25 GMT expires: - '-1' pragma: @@ -28769,7 +20290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '85' x-powered-by: - ASP.NET status: @@ -28790,15 +20311,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28807,7 +20328,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:51 GMT + - Tue, 13 Jul 2021 15:48:26 GMT expires: - '-1' pragma: @@ -28823,7 +20344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '84' x-powered-by: - ASP.NET status: @@ -28844,15 +20365,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28861,7 +20382,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:52 GMT + - Tue, 13 Jul 2021 15:48:28 GMT expires: - '-1' pragma: @@ -28877,7 +20398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '83' x-powered-by: - ASP.NET status: @@ -28898,15 +20419,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28915,7 +20436,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:53 GMT + - Tue, 13 Jul 2021 15:48:29 GMT expires: - '-1' pragma: @@ -28931,7 +20452,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '82' x-powered-by: - ASP.NET status: @@ -28952,15 +20473,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -28969,7 +20490,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:54 GMT + - Tue, 13 Jul 2021 15:48:30 GMT expires: - '-1' pragma: @@ -28985,7 +20506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '81' x-powered-by: - ASP.NET status: @@ -29006,15 +20527,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29023,7 +20544,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:56 GMT + - Tue, 13 Jul 2021 15:48:31 GMT expires: - '-1' pragma: @@ -29039,7 +20560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '80' x-powered-by: - ASP.NET status: @@ -29060,15 +20581,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29077,7 +20598,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:57 GMT + - Tue, 13 Jul 2021 15:48:33 GMT expires: - '-1' pragma: @@ -29093,7 +20614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '79' x-powered-by: - ASP.NET status: @@ -29114,15 +20635,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29131,7 +20652,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:53:59 GMT + - Tue, 13 Jul 2021 15:48:35 GMT expires: - '-1' pragma: @@ -29147,7 +20668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '78' x-powered-by: - ASP.NET status: @@ -29168,15 +20689,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29185,7 +20706,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:00 GMT + - Tue, 13 Jul 2021 15:48:36 GMT expires: - '-1' pragma: @@ -29201,7 +20722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '77' x-powered-by: - ASP.NET status: @@ -29222,15 +20743,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29239,7 +20760,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:01 GMT + - Tue, 13 Jul 2021 15:48:37 GMT expires: - '-1' pragma: @@ -29255,7 +20776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '76' x-powered-by: - ASP.NET status: @@ -29276,15 +20797,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29293,7 +20814,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:02 GMT + - Tue, 13 Jul 2021 15:48:38 GMT expires: - '-1' pragma: @@ -29309,7 +20830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '75' x-powered-by: - ASP.NET status: @@ -29330,15 +20851,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29347,7 +20868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:04 GMT + - Tue, 13 Jul 2021 15:48:40 GMT expires: - '-1' pragma: @@ -29363,7 +20884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '74' x-powered-by: - ASP.NET status: @@ -29384,15 +20905,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29401,7 +20922,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:05 GMT + - Tue, 13 Jul 2021 15:48:41 GMT expires: - '-1' pragma: @@ -29417,7 +20938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '73' x-powered-by: - ASP.NET status: @@ -29438,15 +20959,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29455,7 +20976,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:06 GMT + - Tue, 13 Jul 2021 15:48:42 GMT expires: - '-1' pragma: @@ -29471,7 +20992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '72' x-powered-by: - ASP.NET status: @@ -29492,15 +21013,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29509,7 +21030,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:07 GMT + - Tue, 13 Jul 2021 15:48:43 GMT expires: - '-1' pragma: @@ -29525,7 +21046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '71' x-powered-by: - ASP.NET status: @@ -29546,15 +21067,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29563,7 +21084,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:08 GMT + - Tue, 13 Jul 2021 15:48:44 GMT expires: - '-1' pragma: @@ -29579,7 +21100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '70' x-powered-by: - ASP.NET status: @@ -29600,15 +21121,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29617,7 +21138,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:10 GMT + - Tue, 13 Jul 2021 15:48:46 GMT expires: - '-1' pragma: @@ -29633,7 +21154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '69' x-powered-by: - ASP.NET status: @@ -29654,15 +21175,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29671,7 +21192,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:12 GMT + - Tue, 13 Jul 2021 15:48:47 GMT expires: - '-1' pragma: @@ -29687,7 +21208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '68' x-powered-by: - ASP.NET status: @@ -29708,15 +21229,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29725,7 +21246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:13 GMT + - Tue, 13 Jul 2021 15:48:48 GMT expires: - '-1' pragma: @@ -29741,7 +21262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '67' x-powered-by: - ASP.NET status: @@ -29762,15 +21283,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29779,7 +21300,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:15 GMT + - Tue, 13 Jul 2021 15:48:50 GMT expires: - '-1' pragma: @@ -29795,7 +21316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '66' x-powered-by: - ASP.NET status: @@ -29816,15 +21337,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29833,7 +21354,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:16 GMT + - Tue, 13 Jul 2021 15:48:51 GMT expires: - '-1' pragma: @@ -29849,7 +21370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '65' x-powered-by: - ASP.NET status: @@ -29870,15 +21391,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29887,7 +21408,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:17 GMT + - Tue, 13 Jul 2021 15:48:52 GMT expires: - '-1' pragma: @@ -29903,7 +21424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '64' x-powered-by: - ASP.NET status: @@ -29924,15 +21445,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29941,7 +21462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:18 GMT + - Tue, 13 Jul 2021 15:48:53 GMT expires: - '-1' pragma: @@ -29957,7 +21478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '63' x-powered-by: - ASP.NET status: @@ -29978,15 +21499,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -29995,7 +21516,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:20 GMT + - Tue, 13 Jul 2021 15:48:56 GMT expires: - '-1' pragma: @@ -30011,7 +21532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '62' x-powered-by: - ASP.NET status: @@ -30032,15 +21553,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -30049,7 +21570,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:21 GMT + - Tue, 13 Jul 2021 15:48:57 GMT expires: - '-1' pragma: @@ -30065,7 +21586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '61' x-powered-by: - ASP.NET status: @@ -30086,15 +21607,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -30103,7 +21624,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:22 GMT + - Tue, 13 Jul 2021 15:48:58 GMT expires: - '-1' pragma: @@ -30119,7 +21640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '60' x-powered-by: - ASP.NET status: @@ -30140,15 +21661,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"InProgress","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"InProgress","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -30157,7 +21678,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:23 GMT + - Tue, 13 Jul 2021 15:48:59 GMT expires: - '-1' pragma: @@ -30173,7 +21694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '59' x-powered-by: - ASP.NET status: @@ -30194,15 +21715,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - 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/0933e496-261c-4f7a-896a-34b25ea09150?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/f93e0d67-f2ee-499a-9bff-efcb5e2f6256?api-version=2021-01-01 response: body: - string: '{"id":"0933e496-261c-4f7a-896a-34b25ea09150","name":"0933e496-261c-4f7a-896a-34b25ea09150","status":"Succeeded","startTime":"2021-06-21T16:52:32.7598581Z","endTime":"2021-06-21T16:52:32.7598581Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9e9b404d-a94a-4622-8a10-24968318f10a"}}' + string: '{"id":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","name":"f93e0d67-f2ee-499a-9bff-efcb5e2f6256","status":"Succeeded","startTime":"2021-07-13T15:47:07.9622588Z","endTime":"2021-07-13T15:47:07.9622588Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"efeba736-1dd1-4b43-a0e3-175f3aff30e2"}}' headers: cache-control: - no-cache @@ -30211,7 +21732,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:25 GMT + - Tue, 13 Jul 2021 15:49:00 GMT expires: - '-1' pragma: @@ -30227,7 +21748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '58' x-powered-by: - ASP.NET status: @@ -30248,25 +21769,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/9e9b404d-a94a-4622-8a10-24968318f10a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/efeba736-1dd1-4b43-a0e3-175f3aff30e2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/9e9b404d-a94a-4622-8a10-24968318f10a","name":"9e9b404d-a94a-4622-8a10-24968318f10a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M51.801363S","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-06-21T16:52:32.7598581Z","endTime":"2021-06-21T16:54:24.5612211Z","activityId":"11adf53b-d2b1-11eb-b934-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/efeba736-1dd1-4b43-a0e3-175f3aff30e2","name":"efeba736-1dd1-4b43-a0e3-175f3aff30e2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M51.8534826S","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-07-13T15:47:07.9622588Z","endTime":"2021-07-13T15:48:59.8157414Z","activityId":"9224d1fe-e3f1-11eb-87a6-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '972' + - '973' content-type: - application/json date: - - Mon, 21 Jun 2021 16:54:26 GMT + - Tue, 13 Jul 2021 15:49:01 GMT expires: - '-1' pragma: @@ -30283,7 +21804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -30293,7 +21814,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -30305,9 +21826,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-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?api-version=2021-03-01 response: body: string: '' @@ -30317,7 +21838,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 16:54:41 GMT + - Tue, 13 Jul 2021 15:49:03 GMT expires: - '-1' pragma: 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 b71caf15a01..8cf3a739d1d 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-14T16%3A48%3A08.9173584Z''\"","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-07-13T12%3A41%3A15.5594369Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:48:08 GMT + - Tue, 13 Jul 2021 12:41:15 GMT expires: - '-1' pragma: @@ -61,8 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -78,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:48:09 GMT + - Tue, 13 Jul 2021 12:41:16 GMT expires: - '-1' pragma: @@ -119,8 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:48:10 GMT + - Tue, 13 Jul 2021 12:41:16 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -172,12 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-14T16:48:05Z"},"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-07-13T12:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:48:10 GMT + - Tue, 13 Jul 2021 12:41:17 GMT expires: - '-1' pragma: @@ -221,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -259,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 14 Jun 2021 16:48:11 GMT + - Tue, 13 Jul 2021 12:41:18 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 14 Jun 2021 16:53:11 GMT + - Tue, 13 Jul 2021 12:46:18 GMT source-age: - - '285' + - '31' strict-transport-security: - max-age=31536000 vary: @@ -281,19 +282,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '3' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 77ab6d01a28e263675f391addf183e7c0ab6e50d + - eecbc3f40c7d6b92fd4fd4044b7cda7e0b94d1bd x-frame-options: - deny x-github-request-id: - - 1334:1A44:278DC5:30235E:60C6D0A5 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1250-QPG + - cache-qpg1278-QPG x-timer: - - S1623689291.307834,VS0,VE0 + - S1626180078.198995,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -313,7 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -327,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:48:10 GMT + - Tue, 13 Jul 2021 12:41:18 GMT expires: - '-1' pragma: @@ -395,15 +396,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_8MArk91CYJE66VLj4vkra8XHcmrOprVi","name":"vm_deploy_8MArk91CYJE66VLj4vkra8XHcmrOprVi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2326948985561856845","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-14T16:48:16.0811396Z","duration":"PT0.8890249S","correlationId":"f6c8f9be-6d16-490a-9ead-bc8a6049e085","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_IYxNDp6n2v9ovAypyE1U919NItJ331am","name":"vm_deploy_IYxNDp6n2v9ovAypyE1U919NItJ331am","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7023199793007257132","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T12:41:20.1486431Z","duration":"PT0.8971958S","correlationId":"c137e4d3-f0e4-464c-9fc8-51f544daa743","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_8MArk91CYJE66VLj4vkra8XHcmrOprVi/operationStatuses/08585779175902855164?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYxNDp6n2v9ovAypyE1U919NItJ331am/operationStatuses/08585754268062261902?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -411,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:48:15 GMT + - Tue, 13 Jul 2021 12:41:20 GMT expires: - '-1' pragma: @@ -421,7 +422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -439,9 +440,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585779175902855164?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/08585754268062261902?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -453,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:48:46 GMT + - Tue, 13 Jul 2021 12:41:50 GMT expires: - '-1' pragma: @@ -481,9 +482,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585779175902855164?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/08585754268062261902?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -495,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:49:16 GMT + - Tue, 13 Jul 2021 12:42:20 GMT expires: - '-1' pragma: @@ -523,12 +524,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8MArk91CYJE66VLj4vkra8XHcmrOprVi","name":"vm_deploy_8MArk91CYJE66VLj4vkra8XHcmrOprVi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2326948985561856845","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-14T16:49:01.9289197Z","duration":"PT46.736805S","correlationId":"f6c8f9be-6d16-490a-9ead-bc8a6049e085","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_IYxNDp6n2v9ovAypyE1U919NItJ331am","name":"vm_deploy_IYxNDp6n2v9ovAypyE1U919NItJ331am","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7023199793007257132","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T12:42:06.6006743Z","duration":"PT47.349227S","correlationId":"c137e4d3-f0e4-464c-9fc8-51f544daa743","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 @@ -537,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:49:16 GMT + - Tue, 13 Jul 2021 12:42:20 GMT expires: - '-1' pragma: @@ -565,7 +566,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -574,16 +575,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\": \"366a9837-e271-4067-875c-badad8bd5f22\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7aa5111a-979b-4c40-83c6-839128a5ecb6\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_bb7c0e0268e74669afb4022ee75a37f5\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_652d7c85fcbb442fbc8ed52b299d5588\",\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_bb7c0e0268e74669afb4022ee75a37f5\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_652d7c85fcbb442fbc8ed52b299d5588\"\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\": @@ -597,16 +598,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\": \"2021-06-14T16:49:17+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T12:42:21+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_bb7c0e0268e74669afb4022ee75a37f5\",\r\n \"statuses\": + \"clitest-vm000003_disk1_652d7c85fcbb442fbc8ed52b299d5588\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-14T16:48:38.0729975+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T12:41:43.0832084+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-14T16:48:57.979339+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T12:42:04.317506+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}" @@ -618,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:49:17 GMT + - Tue, 13 Jul 2021 12:42:21 GMT expires: - '-1' pragma: @@ -635,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31994 + - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31965 status: code: 200 message: OK @@ -653,20 +654,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"312e1537-ede3-40ad-bdc9-f019c50e6944\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"509d9c47-2331-4247-b78b-8c70366eab91\\\"\",\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\": \"f7c6c3cc-17a9-4fd1-bdd6-9c8d5fbb0cc1\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"750ff45e-edd7-4312-b22a-9a8eea37ac47\",\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/\\\"312e1537-ede3-40ad-bdc9-f019c50e6944\\\"\",\r\n + \ \"etag\": \"W/\\\"509d9c47-2331-4247-b78b-8c70366eab91\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -675,8 +676,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\": - \"np5kbrgh5sguxhouadnlqdlhkd.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-56-AC-B3\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"dbt1a3clydoutktf5fyho5pqhg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C6-B2-5D\",\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\": @@ -690,9 +691,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:49:17 GMT + - Tue, 13 Jul 2021 12:42:21 GMT etag: - - W/"312e1537-ede3-40ad-bdc9-f019c50e6944" + - W/"509d9c47-2331-4247-b78b-8c70366eab91" expires: - '-1' pragma: @@ -709,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a609ea88-a1ab-471a-bc5b-d1c39733d4b9 + - f7e19a06-6651-45a2-b86b-e3bd1bbe8ee6 status: code: 200 message: OK @@ -727,18 +728,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"6ba6f0e4-ac9b-466d-ab37-e5fb34c270a5\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"94c06a79-9f31-49a1-84eb-2e8716895b3f\\\"\",\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\": \"a62c7d14-7941-42be-8345-beceb612271f\",\r\n - \ \"ipAddress\": \"20.205.202.64\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c51e95df-30c4-4398-8946-2893282f48ef\",\r\n + \ \"ipAddress\": \"52.187.175.12\",\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 @@ -751,9 +752,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:49:17 GMT + - Tue, 13 Jul 2021 12:42:22 GMT etag: - - W/"6ba6f0e4-ac9b-466d-ab37-e5fb34c270a5" + - W/"94c06a79-9f31-49a1-84eb-2e8716895b3f" expires: - '-1' pragma: @@ -770,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3a68d80-9369-4304-95f3-50a846a50808 + - a6b20426-1612-4539-b389-0ad66bb76600 status: code: 200 message: OK @@ -788,7 +789,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -797,16 +798,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\": \"366a9837-e271-4067-875c-badad8bd5f22\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7aa5111a-979b-4c40-83c6-839128a5ecb6\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_bb7c0e0268e74669afb4022ee75a37f5\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_652d7c85fcbb442fbc8ed52b299d5588\",\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_bb7c0e0268e74669afb4022ee75a37f5\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_652d7c85fcbb442fbc8ed52b299d5588\"\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\": @@ -824,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Jun 2021 16:49:18 GMT + - Tue, 13 Jul 2021 12:42:21 GMT expires: - '-1' pragma: @@ -841,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31964 status: code: 200 message: OK @@ -859,12 +860,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-14T16%3A48%3A08.9173584Z''\"","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-07-13T12%3A41%3A15.5594369Z''\"","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 @@ -873,7 +874,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:17 GMT + - Tue, 13 Jul 2021 12:42:22 GMT expires: - '-1' pragma: @@ -905,15 +906,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-15T02:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-15T02: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-07-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -922,7 +923,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:19 GMT + - Tue, 13 Jul 2021 12:42:22 GMT expires: - '-1' pragma: @@ -958,15 +959,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo;clitest-vmuyhbz/protectableItems/vm;iaasvmcontainerv2;clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo;clitest-vmuyhbz","name":"iaasvmcontainerv2;clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo;clitest-vmuyhbz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo/providers/Microsoft.Compute/virtualMachines/clitest-vmuyhbz","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmuyhbz","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache @@ -975,7 +976,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:19 GMT + - Tue, 13 Jul 2021 12:42:23 GMT expires: - '-1' pragma: @@ -1013,8 +1014,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -1024,17 +1025,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2019-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/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:20 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1062,12 +1063,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1077,11 +1078,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:20 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1109,12 +1110,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1124,11 +1125,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:21 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1156,12 +1157,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1171,11 +1172,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:23 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1203,12 +1204,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1218,11 +1219,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:24 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1250,12 +1251,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1265,11 +1266,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:25 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1297,12 +1298,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1312,11 +1313,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:27 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1344,12 +1345,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1359,11 +1360,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:28 GMT + - Tue, 13 Jul 2021 12:42: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1391,12 +1392,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1406,11 +1407,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:30 GMT + - Tue, 13 Jul 2021 12: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1438,12 +1439,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1453,11 +1454,11 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:31 GMT + - Tue, 13 Jul 2021 12: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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1485,12 +1486,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/1f26b4f0-16a7-4b67-a643-41c77749d7b3?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb647165-c294-4e8c-ad98-77a0eaefba52?api-version=2021-01-01 response: body: string: '' @@ -1498,7 +1499,7 @@ interactions: cache-control: - no-cache date: - - Mon, 14 Jun 2021 16:49:32 GMT + - Tue, 13 Jul 2021 12:42:36 GMT expires: - '-1' pragma: @@ -1528,15 +1529,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo;clitest-vmuyhbz/protectableItems/vm;iaasvmcontainerv2;clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo;clitest-vmuyhbz","name":"iaasvmcontainerv2;clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo;clitest-vmuyhbz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo/providers/Microsoft.Compute/virtualMachines/clitest-vmuyhbz","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgxmvcazjuoqc66pjk6axjf26gskkzez22gypltofeiztmhxnfk7nd2jl7upkxvrhvo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmuyhbz","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache @@ -1545,7 +1546,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:33 GMT + - Tue, 13 Jul 2021 12:42:36 GMT expires: - '-1' pragma: @@ -1587,8 +1588,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -1598,17 +1599,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Jun 2021 16:49:34 GMT + - Tue, 13 Jul 2021 12:42: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1636,15 +1637,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1653,7 +1654,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:35 GMT + - Tue, 13 Jul 2021 12:42:37 GMT expires: - '-1' pragma: @@ -1689,15 +1690,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1706,7 +1707,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:36 GMT + - Tue, 13 Jul 2021 12:42:38 GMT expires: - '-1' pragma: @@ -1742,15 +1743,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1759,7 +1760,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:38 GMT + - Tue, 13 Jul 2021 12:42:40 GMT expires: - '-1' pragma: @@ -1795,15 +1796,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1812,7 +1813,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:39 GMT + - Tue, 13 Jul 2021 12:42:41 GMT expires: - '-1' pragma: @@ -1848,15 +1849,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1865,7 +1866,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:40 GMT + - Tue, 13 Jul 2021 12:42:42 GMT expires: - '-1' pragma: @@ -1901,15 +1902,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1918,7 +1919,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:42 GMT + - Tue, 13 Jul 2021 12:42:43 GMT expires: - '-1' pragma: @@ -1954,15 +1955,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1971,7 +1972,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:43 GMT + - Tue, 13 Jul 2021 12:42:44 GMT expires: - '-1' pragma: @@ -2007,15 +2008,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2024,7 +2025,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:44 GMT + - Tue, 13 Jul 2021 12:42:46 GMT expires: - '-1' pragma: @@ -2060,15 +2061,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2077,7 +2078,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:45 GMT + - Tue, 13 Jul 2021 12:42:47 GMT expires: - '-1' pragma: @@ -2113,15 +2114,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2130,7 +2131,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:46 GMT + - Tue, 13 Jul 2021 12:42:48 GMT expires: - '-1' pragma: @@ -2166,15 +2167,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2183,7 +2184,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:47 GMT + - Tue, 13 Jul 2021 12:42:49 GMT expires: - '-1' pragma: @@ -2219,15 +2220,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2236,7 +2237,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:49 GMT + - Tue, 13 Jul 2021 12:42:50 GMT expires: - '-1' pragma: @@ -2272,15 +2273,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2289,7 +2290,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:50 GMT + - Tue, 13 Jul 2021 12:42:52 GMT expires: - '-1' pragma: @@ -2325,15 +2326,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2342,7 +2343,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:51 GMT + - Tue, 13 Jul 2021 12:42:53 GMT expires: - '-1' pragma: @@ -2378,15 +2379,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2395,7 +2396,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:52 GMT + - Tue, 13 Jul 2021 12:42:54 GMT expires: - '-1' pragma: @@ -2431,15 +2432,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2448,7 +2449,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:53 GMT + - Tue, 13 Jul 2021 12:42:55 GMT expires: - '-1' pragma: @@ -2484,15 +2485,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2501,7 +2502,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:55 GMT + - Tue, 13 Jul 2021 12:42:56 GMT expires: - '-1' pragma: @@ -2537,15 +2538,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2554,7 +2555,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:56 GMT + - Tue, 13 Jul 2021 12:42:58 GMT expires: - '-1' pragma: @@ -2590,15 +2591,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2607,7 +2608,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:57 GMT + - Tue, 13 Jul 2021 12:42:59 GMT expires: - '-1' pragma: @@ -2643,15 +2644,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2660,7 +2661,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:49:58 GMT + - Tue, 13 Jul 2021 12:43:00 GMT expires: - '-1' pragma: @@ -2696,15 +2697,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2713,7 +2714,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:00 GMT + - Tue, 13 Jul 2021 12:43:01 GMT expires: - '-1' pragma: @@ -2749,15 +2750,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2766,7 +2767,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:01 GMT + - Tue, 13 Jul 2021 12:43:02 GMT expires: - '-1' pragma: @@ -2802,15 +2803,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2819,7 +2820,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:02 GMT + - Tue, 13 Jul 2021 12:43:04 GMT expires: - '-1' pragma: @@ -2855,15 +2856,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2872,7 +2873,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:03 GMT + - Tue, 13 Jul 2021 12:43:05 GMT expires: - '-1' pragma: @@ -2908,15 +2909,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2925,7 +2926,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:04 GMT + - Tue, 13 Jul 2021 12:43:06 GMT expires: - '-1' pragma: @@ -2961,15 +2962,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2978,7 +2979,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:06 GMT + - Tue, 13 Jul 2021 12:43:07 GMT expires: - '-1' pragma: @@ -3014,15 +3015,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3031,7 +3032,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:07 GMT + - Tue, 13 Jul 2021 12:43:08 GMT expires: - '-1' pragma: @@ -3067,15 +3068,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3084,7 +3085,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:08 GMT + - Tue, 13 Jul 2021 12:43:11 GMT expires: - '-1' pragma: @@ -3120,15 +3121,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3137,7 +3138,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:09 GMT + - Tue, 13 Jul 2021 12:43:12 GMT expires: - '-1' pragma: @@ -3173,15 +3174,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3190,7 +3191,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:10 GMT + - Tue, 13 Jul 2021 12:43:13 GMT expires: - '-1' pragma: @@ -3226,15 +3227,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3243,7 +3244,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:11 GMT + - Tue, 13 Jul 2021 12:43:14 GMT expires: - '-1' pragma: @@ -3279,15 +3280,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3296,7 +3297,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:13 GMT + - Tue, 13 Jul 2021 12:43:15 GMT expires: - '-1' pragma: @@ -3332,15 +3333,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3349,7 +3350,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:14 GMT + - Tue, 13 Jul 2021 12:43:17 GMT expires: - '-1' pragma: @@ -3385,15 +3386,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3402,7 +3403,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:15 GMT + - Tue, 13 Jul 2021 12:43:18 GMT expires: - '-1' pragma: @@ -3438,15 +3439,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3455,7 +3456,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:16 GMT + - Tue, 13 Jul 2021 12:43:19 GMT expires: - '-1' pragma: @@ -3491,15 +3492,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3508,7 +3509,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:18 GMT + - Tue, 13 Jul 2021 12:43:20 GMT expires: - '-1' pragma: @@ -3544,15 +3545,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3561,7 +3562,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:19 GMT + - Tue, 13 Jul 2021 12:43:21 GMT expires: - '-1' pragma: @@ -3597,15 +3598,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3614,7 +3615,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:20 GMT + - Tue, 13 Jul 2021 12:43:23 GMT expires: - '-1' pragma: @@ -3650,15 +3651,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3667,7 +3668,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:21 GMT + - Tue, 13 Jul 2021 12:43:24 GMT expires: - '-1' pragma: @@ -3703,15 +3704,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3720,7 +3721,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:22 GMT + - Tue, 13 Jul 2021 12:43:25 GMT expires: - '-1' pragma: @@ -3756,15 +3757,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3773,7 +3774,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:23 GMT + - Tue, 13 Jul 2021 12:43:26 GMT expires: - '-1' pragma: @@ -3809,15 +3810,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3826,7 +3827,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:25 GMT + - Tue, 13 Jul 2021 12:43:28 GMT expires: - '-1' pragma: @@ -3862,15 +3863,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3879,7 +3880,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:27 GMT + - Tue, 13 Jul 2021 12:43:29 GMT expires: - '-1' pragma: @@ -3915,15 +3916,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3932,7 +3933,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:28 GMT + - Tue, 13 Jul 2021 12:43:30 GMT expires: - '-1' pragma: @@ -3968,15 +3969,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3985,7 +3986,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:29 GMT + - Tue, 13 Jul 2021 12:43:31 GMT expires: - '-1' pragma: @@ -4021,15 +4022,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4038,7 +4039,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:30 GMT + - Tue, 13 Jul 2021 12:43:32 GMT expires: - '-1' pragma: @@ -4074,15 +4075,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4091,7 +4092,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:32 GMT + - Tue, 13 Jul 2021 12:43:34 GMT expires: - '-1' pragma: @@ -4127,15 +4128,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4144,7 +4145,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:33 GMT + - Tue, 13 Jul 2021 12:43:35 GMT expires: - '-1' pragma: @@ -4180,15 +4181,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4197,7 +4198,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:34 GMT + - Tue, 13 Jul 2021 12:43:36 GMT expires: - '-1' pragma: @@ -4233,15 +4234,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4250,7 +4251,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:35 GMT + - Tue, 13 Jul 2021 12:43:37 GMT expires: - '-1' pragma: @@ -4286,15 +4287,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4303,7 +4304,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:36 GMT + - Tue, 13 Jul 2021 12:43:39 GMT expires: - '-1' pragma: @@ -4339,15 +4340,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4356,7 +4357,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:38 GMT + - Tue, 13 Jul 2021 12:43:40 GMT expires: - '-1' pragma: @@ -4392,15 +4393,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4409,7 +4410,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:39 GMT + - Tue, 13 Jul 2021 12:43:41 GMT expires: - '-1' pragma: @@ -4445,15 +4446,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4462,7 +4463,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:40 GMT + - Tue, 13 Jul 2021 12:43:42 GMT expires: - '-1' pragma: @@ -4498,15 +4499,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4515,7 +4516,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:41 GMT + - Tue, 13 Jul 2021 12:43:43 GMT expires: - '-1' pragma: @@ -4551,15 +4552,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4568,7 +4569,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:42 GMT + - Tue, 13 Jul 2021 12:43:45 GMT expires: - '-1' pragma: @@ -4604,15 +4605,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4621,7 +4622,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:43 GMT + - Tue, 13 Jul 2021 12:43:46 GMT expires: - '-1' pragma: @@ -4657,15 +4658,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4674,7 +4675,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:45 GMT + - Tue, 13 Jul 2021 12:43:47 GMT expires: - '-1' pragma: @@ -4710,15 +4711,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4727,7 +4728,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:46 GMT + - Tue, 13 Jul 2021 12:43:48 GMT expires: - '-1' pragma: @@ -4763,15 +4764,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4780,7 +4781,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:47 GMT + - Tue, 13 Jul 2021 12:43:49 GMT expires: - '-1' pragma: @@ -4816,15 +4817,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4833,7 +4834,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:48 GMT + - Tue, 13 Jul 2021 12:43:51 GMT expires: - '-1' pragma: @@ -4869,15 +4870,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4886,7 +4887,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:50 GMT + - Tue, 13 Jul 2021 12:43:52 GMT expires: - '-1' pragma: @@ -4922,15 +4923,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4939,7 +4940,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:51 GMT + - Tue, 13 Jul 2021 12:43:53 GMT expires: - '-1' pragma: @@ -4975,15 +4976,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4992,7 +4993,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:52 GMT + - Tue, 13 Jul 2021 12:43:54 GMT expires: - '-1' pragma: @@ -5028,15 +5029,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5045,7 +5046,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:53 GMT + - Tue, 13 Jul 2021 12:43:55 GMT expires: - '-1' pragma: @@ -5081,15 +5082,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5098,7 +5099,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:54 GMT + - Tue, 13 Jul 2021 12:43:57 GMT expires: - '-1' pragma: @@ -5134,15 +5135,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"InProgress","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5151,7 +5152,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:56 GMT + - Tue, 13 Jul 2021 12:43:58 GMT expires: - '-1' pragma: @@ -5187,24 +5188,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1493578b-22a7-4513-a75b-73394bde0823?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"1493578b-22a7-4513-a75b-73394bde0823","name":"1493578b-22a7-4513-a75b-73394bde0823","status":"Succeeded","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"2021-06-14T16:49:35.0831625Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1b40ba16-9978-4a4e-999d-d1e942460216"}}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:57 GMT + - Tue, 13 Jul 2021 12:43:59 GMT expires: - '-1' pragma: @@ -5240,32 +5241,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1b40ba16-9978-4a4e-999d-d1e942460216?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1b40ba16-9978-4a4e-999d-d1e942460216","name":"1b40ba16-9978-4a4e-999d-d1e942460216","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M22.2636986S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-14T16:49:35.0831625Z","endTime":"2021-06-14T16:50:57.3468611Z","activityId":"757769f8-cd30-11eb-97fd-c8f750f92764"}}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:58 GMT + - Tue, 13 Jul 2021 12:44: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: @@ -5275,7 +5274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '81' x-powered-by: - ASP.NET status: @@ -5289,30 +5288,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1983' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:58 GMT + - Tue, 13 Jul 2021 12:44:02 GMT expires: - '-1' pragma: @@ -5328,66 +5327,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '80' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-14T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","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/63251a32-dc0d-4b0e-bfe7-9b3dda9e136c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 14 Jun 2021 16:50:59 GMT + - Tue, 13 Jul 2021 12:44: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/63251a32-dc0d-4b0e-bfe7-9b3dda9e136c?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5396,21 +5394,21 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/63251a32-dc0d-4b0e-bfe7-9b3dda9e136c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"63251a32-dc0d-4b0e-bfe7-9b3dda9e136c","name":"63251a32-dc0d-4b0e-bfe7-9b3dda9e136c","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5419,7 +5417,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:50:59 GMT + - Tue, 13 Jul 2021 12:44:04 GMT expires: - '-1' pragma: @@ -5435,7 +5433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '78' x-powered-by: - ASP.NET status: @@ -5449,30 +5447,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/63251a32-dc0d-4b0e-bfe7-9b3dda9e136c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"63251a32-dc0d-4b0e-bfe7-9b3dda9e136c","name":"63251a32-dc0d-4b0e-bfe7-9b3dda9e136c","status":"Succeeded","startTime":"2021-06-14T16:50:59.7934962Z","endTime":"2021-06-14T16:50:59.7934962Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590"}}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:51:00 GMT + - Tue, 13 Jul 2021 12:44:06 GMT expires: - '-1' pragma: @@ -5488,7 +5486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '77' x-powered-by: - ASP.NET status: @@ -5502,40 +5500,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.9788704S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:51:02 GMT + - Tue, 13 Jul 2021 12:44:07 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5545,7 +5539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '76' x-powered-by: - ASP.NET status: @@ -5559,40 +5553,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.7111764S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"InProgress","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:51:02 GMT + - Tue, 13 Jul 2021 12:44: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: @@ -5602,7 +5592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '75' x-powered-by: - ASP.NET status: @@ -5616,40 +5606,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0289281c-caf0-4304-9092-9f12bf1c07da?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.1487114S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"0289281c-caf0-4304-9092-9f12bf1c07da","name":"0289281c-caf0-4304-9092-9f12bf1c07da","status":"Succeeded","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"2021-07-13T12:42:37.5298737Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0d786c40-5223-47ea-b801-3e469c232bfa"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '304' content-type: - application/json date: - - Mon, 14 Jun 2021 16:51:02 GMT + - Tue, 13 Jul 2021 12:44: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: @@ -5659,7 +5645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '74' x-powered-by: - ASP.NET status: @@ -5673,33 +5659,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0d786c40-5223-47ea-b801-3e469c232bfa?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.5509504S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0d786c40-5223-47ea-b801-3e469c232bfa","name":"0d786c40-5223-47ea-b801-3e469c232bfa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M32.037733S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T12:42:37.5298737Z","endTime":"2021-07-13T12:44:09.5676067Z","activityId":"c3b2043a-e3d7-11eb-afb8-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '969' content-type: - application/json date: - - Mon, 14 Jun 2021 16:51:33 GMT + - Tue, 13 Jul 2021 12:44:11 GMT expires: - '-1' pragma: @@ -5716,7 +5700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -5730,40 +5714,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.9547032S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + 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":"35185876747886","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '1988' content-type: - application/json date: - - Mon, 14 Jun 2021 16:52:04 GMT + - Tue, 13 Jul 2021 12:44: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: @@ -5773,69 +5753,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-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/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.3314209S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '' headers: + 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/340e5763-c4bb-48b6-89b6-1194ee481c76?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1159' - content-type: - - application/json + - '0' date: - - Mon, 14 Jun 2021 16:52:34 GMT + - Tue, 13 Jul 2021 12:44: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/340e5763-c4bb-48b6-89b6-1194ee481c76?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + 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: @@ -5844,40 +5821,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/340e5763-c4bb-48b6-89b6-1194ee481c76?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.9002157S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"340e5763-c4bb-48b6-89b6-1194ee481c76","name":"340e5763-c4bb-48b6-89b6-1194ee481c76","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Mon, 14 Jun 2021 16:53:04 GMT + - Tue, 13 Jul 2021 12:44: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: @@ -5887,7 +5860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -5901,40 +5874,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/340e5763-c4bb-48b6-89b6-1194ee481c76?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.3458226S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"340e5763-c4bb-48b6-89b6-1194ee481c76","name":"340e5763-c4bb-48b6-89b6-1194ee481c76","status":"Succeeded","startTime":"2021-07-13T12:44:12.6196333Z","endTime":"2021-07-13T12:44:12.6196333Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"54b259d9-f238-41cf-a00b-e18eee36eb6f"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '304' content-type: - application/json date: - - Mon, 14 Jun 2021 16:53:34 GMT + - Tue, 13 Jul 2021 12:44: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: @@ -5944,7 +5913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '148' x-powered-by: - ASP.NET status: @@ -5958,33 +5927,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.7903693S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0151193S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1156' content-type: - application/json date: - - Mon, 14 Jun 2021 16:54:05 GMT + - Tue, 13 Jul 2021 12:44:17 GMT expires: - '-1' pragma: @@ -6001,7 +5970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: @@ -6021,27 +5990,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.2922348S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5.0998693S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 14 Jun 2021 16:54:35 GMT + - Tue, 13 Jul 2021 12:44:17 GMT expires: - '-1' pragma: @@ -6058,7 +6027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: @@ -6078,27 +6047,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M8.2340377S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5.5217547S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1156' content-type: - application/json date: - - Mon, 14 Jun 2021 16:55:08 GMT + - Tue, 13 Jul 2021 12:44:17 GMT expires: - '-1' pragma: @@ -6115,7 +6084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '148' x-powered-by: - ASP.NET status: @@ -6135,27 +6104,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M38.9698427S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35.9754044S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 16:55:38 GMT + - Tue, 13 Jul 2021 12:44:48 GMT expires: - '-1' pragma: @@ -6172,7 +6141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '147' x-powered-by: - ASP.NET status: @@ -6192,18 +6161,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M9.4025146S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M6.3874069S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6212,7 +6181,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:56:09 GMT + - Tue, 13 Jul 2021 12:45:18 GMT expires: - '-1' pragma: @@ -6229,7 +6198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '146' x-powered-by: - ASP.NET status: @@ -6249,18 +6218,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M39.7802278S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M36.8166442S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6269,7 +6238,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:56:39 GMT + - Tue, 13 Jul 2021 12:45:48 GMT expires: - '-1' pragma: @@ -6286,7 +6255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '145' x-powered-by: - ASP.NET status: @@ -6306,27 +6275,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M10.2069846S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M7.2171876S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 16:57:09 GMT + - Tue, 13 Jul 2021 12:46:19 GMT expires: - '-1' pragma: @@ -6343,7 +6312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '144' x-powered-by: - ASP.NET status: @@ -6363,18 +6332,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M40.6203542S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M37.6515656S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6383,7 +6352,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:57:39 GMT + - Tue, 13 Jul 2021 12:46:49 GMT expires: - '-1' pragma: @@ -6400,7 +6369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '143' x-powered-by: - ASP.NET status: @@ -6420,27 +6389,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M11.0804078S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M8.0877064S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 16:58:10 GMT + - Tue, 13 Jul 2021 12:47:20 GMT expires: - '-1' pragma: @@ -6457,7 +6426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '142' x-powered-by: - ASP.NET status: @@ -6477,18 +6446,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M41.5542812S","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/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M38.630484S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6497,7 +6466,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:58:41 GMT + - Tue, 13 Jul 2021 12:47:51 GMT expires: - '-1' pragma: @@ -6514,7 +6483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '141' x-powered-by: - ASP.NET status: @@ -6534,18 +6503,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M12.0504044S","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/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M9.1914282S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6554,7 +6523,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 16:59:11 GMT + - Tue, 13 Jul 2021 12:48:21 GMT expires: - '-1' pragma: @@ -6571,7 +6540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '140' x-powered-by: - ASP.NET status: @@ -6591,27 +6560,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M42.509137S","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/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M39.7980283S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 16:59:42 GMT + - Tue, 13 Jul 2021 12:48:52 GMT expires: - '-1' pragma: @@ -6628,7 +6597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '139' x-powered-by: - ASP.NET status: @@ -6648,27 +6617,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M13.1807333S","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/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M10.2813115S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:00:13 GMT + - Tue, 13 Jul 2021 12:49:22 GMT expires: - '-1' pragma: @@ -6685,7 +6654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '138' x-powered-by: - ASP.NET status: @@ -6705,27 +6674,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M43.6432185S","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/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M40.9097203S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:00:43 GMT + - Tue, 13 Jul 2021 12:49:53 GMT expires: - '-1' pragma: @@ -6742,7 +6711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '137' x-powered-by: - ASP.NET status: @@ -6762,27 +6731,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M14.082339S","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/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M11.3180386S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:01:14 GMT + - Tue, 13 Jul 2021 12:50:24 GMT expires: - '-1' pragma: @@ -6799,7 +6768,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '136' x-powered-by: - ASP.NET status: @@ -6819,18 +6788,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M44.4703956S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M41.7227488S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6839,7 +6808,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:01:45 GMT + - Tue, 13 Jul 2021 12:50:54 GMT expires: - '-1' pragma: @@ -6856,7 +6825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '135' x-powered-by: - ASP.NET status: @@ -6876,18 +6845,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M15.8363081S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M12.3550051S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6896,7 +6865,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:02:15 GMT + - Tue, 13 Jul 2021 12:51:24 GMT expires: - '-1' pragma: @@ -6913,7 +6882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '134' x-powered-by: - ASP.NET status: @@ -6933,27 +6902,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M46.2639008S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M42.8145987S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:02:45 GMT + - Tue, 13 Jul 2021 12:51:55 GMT expires: - '-1' pragma: @@ -6970,7 +6939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '133' x-powered-by: - ASP.NET status: @@ -6990,27 +6959,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M16.7110604S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M13.2375289S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:03:16 GMT + - Tue, 13 Jul 2021 12:52:25 GMT expires: - '-1' pragma: @@ -7027,7 +6996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '132' x-powered-by: - ASP.NET status: @@ -7047,27 +7016,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M47.1843401S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M43.6148537S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:03:46 GMT + - Tue, 13 Jul 2021 12:52:55 GMT expires: - '-1' pragma: @@ -7084,7 +7053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '131' x-powered-by: - ASP.NET status: @@ -7104,27 +7073,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M18.0597922S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M18.7324711S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:04:17 GMT + - Tue, 13 Jul 2021 12:53:31 GMT expires: - '-1' pragma: @@ -7141,7 +7110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '130' x-powered-by: - ASP.NET status: @@ -7161,27 +7130,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M48.7677188S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M49.15287S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 14 Jun 2021 17:04:48 GMT + - Tue, 13 Jul 2021 12:54:01 GMT expires: - '-1' pragma: @@ -7198,7 +7167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '129' x-powered-by: - ASP.NET status: @@ -7218,18 +7187,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M19.6591375S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M19.7235334S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7238,7 +7207,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:05:19 GMT + - Tue, 13 Jul 2021 12:54:32 GMT expires: - '-1' pragma: @@ -7255,7 +7224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '128' x-powered-by: - ASP.NET status: @@ -7275,18 +7244,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M50.1178864S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M50.5109136S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7295,7 +7264,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:05:50 GMT + - Tue, 13 Jul 2021 12:55:03 GMT expires: - '-1' pragma: @@ -7312,7 +7281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '127' x-powered-by: - ASP.NET status: @@ -7332,18 +7301,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M20.6124167S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M20.9762579S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7352,7 +7321,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:06:20 GMT + - Tue, 13 Jul 2021 12:55:33 GMT expires: - '-1' pragma: @@ -7369,7 +7338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '126' x-powered-by: - ASP.NET status: @@ -7389,18 +7358,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M51.1043436S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M51.6181485S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7409,7 +7378,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:06:50 GMT + - Tue, 13 Jul 2021 12:56:04 GMT expires: - '-1' pragma: @@ -7426,7 +7395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '125' x-powered-by: - ASP.NET status: @@ -7446,18 +7415,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M21.5437771S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M22.0511087S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7466,7 +7435,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:07:21 GMT + - Tue, 13 Jul 2021 12:56:34 GMT expires: - '-1' pragma: @@ -7483,7 +7452,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '124' x-powered-by: - ASP.NET status: @@ -7503,27 +7472,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M51.9496205S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M52.51297S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:07:51 GMT + - Tue, 13 Jul 2021 12:57:05 GMT expires: - '-1' pragma: @@ -7540,7 +7509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '123' x-powered-by: - ASP.NET status: @@ -7560,18 +7529,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M22.3343971S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M22.9025375S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7580,7 +7549,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:08:22 GMT + - Tue, 13 Jul 2021 12:57:35 GMT expires: - '-1' pragma: @@ -7597,7 +7566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '122' x-powered-by: - ASP.NET status: @@ -7617,18 +7586,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M52.8582984S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M53.3121824S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7637,7 +7606,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:08:52 GMT + - Tue, 13 Jul 2021 12:58:06 GMT expires: - '-1' pragma: @@ -7654,7 +7623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '121' x-powered-by: - ASP.NET status: @@ -7674,18 +7643,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M23.9646986S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M23.7323007S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7694,7 +7663,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:09:24 GMT + - Tue, 13 Jul 2021 12:58:36 GMT expires: - '-1' pragma: @@ -7711,7 +7680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '120' x-powered-by: - ASP.NET status: @@ -7731,18 +7700,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M55.0833814S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M54.1546791S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7751,7 +7720,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:09:55 GMT + - Tue, 13 Jul 2021 12:59:06 GMT expires: - '-1' pragma: @@ -7768,7 +7737,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '119' x-powered-by: - ASP.NET status: @@ -7788,27 +7757,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M25.601066S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M24.5562513S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:10:24 GMT + - Tue, 13 Jul 2021 12:59:37 GMT expires: - '-1' pragma: @@ -7825,7 +7794,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '118' x-powered-by: - ASP.NET status: @@ -7845,27 +7814,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M56.0710104S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M54.933754S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:10:55 GMT + - Tue, 13 Jul 2021 13:00:07 GMT expires: - '-1' pragma: @@ -7882,7 +7851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '117' x-powered-by: - ASP.NET status: @@ -7902,18 +7871,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M26.4557623S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M25.4294007S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7922,7 +7891,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:11:26 GMT + - Tue, 13 Jul 2021 13:00:37 GMT expires: - '-1' pragma: @@ -7939,7 +7908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '116' x-powered-by: - ASP.NET status: @@ -7959,18 +7928,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M56.9666731S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M56.1005605S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7979,7 +7948,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:11:56 GMT + - Tue, 13 Jul 2021 13:01:08 GMT expires: - '-1' pragma: @@ -7996,7 +7965,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '115' x-powered-by: - ASP.NET status: @@ -8016,18 +7985,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M27.4455756S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M26.5526619S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8036,7 +8005,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:12:27 GMT + - Tue, 13 Jul 2021 13:01:39 GMT expires: - '-1' pragma: @@ -8053,7 +8022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '114' x-powered-by: - ASP.NET status: @@ -8073,18 +8042,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M57.9199431S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M57.0169029S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8093,7 +8062,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:12:57 GMT + - Tue, 13 Jul 2021 13:02:09 GMT expires: - '-1' pragma: @@ -8110,7 +8079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '113' x-powered-by: - ASP.NET status: @@ -8130,18 +8099,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M28.3261372S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M27.4320872S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8150,7 +8119,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:13:28 GMT + - Tue, 13 Jul 2021 13:02:39 GMT expires: - '-1' pragma: @@ -8167,7 +8136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '112' x-powered-by: - ASP.NET status: @@ -8187,18 +8156,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M59.1309117S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M58.0847135S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8207,7 +8176,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:13:58 GMT + - Tue, 13 Jul 2021 13:03:10 GMT expires: - '-1' pragma: @@ -8224,7 +8193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '111' x-powered-by: - ASP.NET status: @@ -8244,27 +8213,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M29.7005191S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M28.528957S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:14:29 GMT + - Tue, 13 Jul 2021 13:03:41 GMT expires: - '-1' pragma: @@ -8281,7 +8250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '110' x-powered-by: - ASP.NET status: @@ -8301,27 +8270,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M0.1224875S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M58.9275681S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:14:59 GMT + - Tue, 13 Jul 2021 13:04:11 GMT expires: - '-1' pragma: @@ -8338,7 +8307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '109' x-powered-by: - ASP.NET status: @@ -8358,18 +8327,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M30.5224107S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M29.3679999S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8378,7 +8347,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:15:30 GMT + - Tue, 13 Jul 2021 13:04:41 GMT expires: - '-1' pragma: @@ -8395,7 +8364,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '108' x-powered-by: - ASP.NET status: @@ -8415,27 +8384,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M0.9466818S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M59.8568307S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:16:00 GMT + - Tue, 13 Jul 2021 13:05:12 GMT expires: - '-1' pragma: @@ -8452,7 +8421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '107' x-powered-by: - ASP.NET status: @@ -8472,27 +8441,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M31.3580233S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M30.269628S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:16:30 GMT + - Tue, 13 Jul 2021 13:05:42 GMT expires: - '-1' pragma: @@ -8509,7 +8478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '106' x-powered-by: - ASP.NET status: @@ -8529,18 +8498,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M1.8608064S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M0.7607248S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8549,7 +8518,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:17:01 GMT + - Tue, 13 Jul 2021 13:06:12 GMT expires: - '-1' pragma: @@ -8566,7 +8535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '105' x-powered-by: - ASP.NET status: @@ -8586,18 +8555,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M32.3237715S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M31.2066959S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8606,7 +8575,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:17:31 GMT + - Tue, 13 Jul 2021 13:06:44 GMT expires: - '-1' pragma: @@ -8623,7 +8592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '104' x-powered-by: - ASP.NET status: @@ -8643,18 +8612,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M2.7644103S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M1.7006725S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8663,7 +8632,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:18:02 GMT + - Tue, 13 Jul 2021 13:07:14 GMT expires: - '-1' pragma: @@ -8680,7 +8649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '103' x-powered-by: - ASP.NET status: @@ -8700,18 +8669,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M33.3523106S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M32.0917357S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8720,7 +8689,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:18:32 GMT + - Tue, 13 Jul 2021 13:07:44 GMT expires: - '-1' pragma: @@ -8737,7 +8706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '102' x-powered-by: - ASP.NET status: @@ -8757,18 +8726,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M3.8959269S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M2.5164111S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8777,7 +8746,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:19:03 GMT + - Tue, 13 Jul 2021 13:08:15 GMT expires: - '-1' pragma: @@ -8794,7 +8763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '101' x-powered-by: - ASP.NET status: @@ -8814,27 +8783,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M34.4553354S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M32.920414S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:19:33 GMT + - Tue, 13 Jul 2021 13:08:45 GMT expires: - '-1' pragma: @@ -8851,7 +8820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '100' x-powered-by: - ASP.NET status: @@ -8871,18 +8840,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M4.8855918S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M3.4097609S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8891,7 +8860,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:20:04 GMT + - Tue, 13 Jul 2021 13:09:16 GMT expires: - '-1' pragma: @@ -8908,7 +8877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '99' x-powered-by: - ASP.NET status: @@ -8928,18 +8897,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M35.3371811S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M38.6501291S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -8948,7 +8917,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:20:34 GMT + - Tue, 13 Jul 2021 13:09:51 GMT expires: - '-1' pragma: @@ -8965,7 +8934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '149' x-powered-by: - ASP.NET status: @@ -8985,18 +8954,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M5.8332164S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M9.3151739S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9005,7 +8974,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:21:05 GMT + - Tue, 13 Jul 2021 13:10:22 GMT expires: - '-1' pragma: @@ -9022,7 +8991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '148' x-powered-by: - ASP.NET status: @@ -9042,18 +9011,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M36.2327412S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M39.7113016S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9062,7 +9031,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:21:36 GMT + - Tue, 13 Jul 2021 13:10:52 GMT expires: - '-1' pragma: @@ -9079,7 +9048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '147' x-powered-by: - ASP.NET status: @@ -9099,27 +9068,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M6.6809683S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M10.1546591S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:22:06 GMT + - Tue, 13 Jul 2021 13:11:22 GMT expires: - '-1' pragma: @@ -9136,7 +9105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '146' x-powered-by: - ASP.NET status: @@ -9156,27 +9125,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M37.06634S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M40.6128906S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:22:37 GMT + - Tue, 13 Jul 2021 13:11:53 GMT expires: - '-1' pragma: @@ -9193,7 +9162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '145' x-powered-by: - ASP.NET status: @@ -9213,27 +9182,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M7.8221512S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M11.0607195S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:23:07 GMT + - Tue, 13 Jul 2021 13:12:23 GMT expires: - '-1' pragma: @@ -9250,7 +9219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '144' x-powered-by: - ASP.NET status: @@ -9270,18 +9239,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M38.1872502S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M41.4891228S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9290,7 +9259,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:23:37 GMT + - Tue, 13 Jul 2021 13:12:53 GMT expires: - '-1' pragma: @@ -9307,7 +9276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '143' x-powered-by: - ASP.NET status: @@ -9327,27 +9296,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M8.7003412S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M12.1066275S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:24:08 GMT + - Tue, 13 Jul 2021 13:13:24 GMT expires: - '-1' pragma: @@ -9364,7 +9333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '142' x-powered-by: - ASP.NET status: @@ -9384,27 +9353,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M39.1324473S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M42.504486S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:24:38 GMT + - Tue, 13 Jul 2021 13:13:54 GMT expires: - '-1' pragma: @@ -9421,7 +9390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '141' x-powered-by: - ASP.NET status: @@ -9441,27 +9410,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M9.5597364S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M13.1355911S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:25:09 GMT + - Tue, 13 Jul 2021 13:14:25 GMT expires: - '-1' pragma: @@ -9478,7 +9447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '140' x-powered-by: - ASP.NET status: @@ -9498,18 +9467,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M40.0131587S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M43.5820204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9518,7 +9487,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:25:39 GMT + - Tue, 13 Jul 2021 13:14:56 GMT expires: - '-1' pragma: @@ -9535,7 +9504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '139' x-powered-by: - ASP.NET status: @@ -9555,18 +9524,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M10.4928631S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M14.0359096S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9575,7 +9544,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:26:09 GMT + - Tue, 13 Jul 2021 13:15:26 GMT expires: - '-1' pragma: @@ -9592,7 +9561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '138' x-powered-by: - ASP.NET status: @@ -9612,18 +9581,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M40.9232589S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M44.4091459S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9632,7 +9601,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:26:40 GMT + - Tue, 13 Jul 2021 13:15:57 GMT expires: - '-1' pragma: @@ -9649,7 +9618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '137' x-powered-by: - ASP.NET status: @@ -9669,18 +9638,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M11.3984175S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M14.8579302S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9689,7 +9658,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:27:11 GMT + - Tue, 13 Jul 2021 13:16:27 GMT expires: - '-1' pragma: @@ -9706,7 +9675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '136' x-powered-by: - ASP.NET status: @@ -9726,18 +9695,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M42.1298779S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M45.2611297S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9746,7 +9715,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:27:41 GMT + - Tue, 13 Jul 2021 13:16:57 GMT expires: - '-1' pragma: @@ -9763,7 +9732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '135' x-powered-by: - ASP.NET status: @@ -9783,27 +9752,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M12.5758917S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M15.688835S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:28:12 GMT + - Tue, 13 Jul 2021 13:17:28 GMT expires: - '-1' pragma: @@ -9820,7 +9789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '134' x-powered-by: - ASP.NET status: @@ -9840,18 +9809,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M43.0577099S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M46.1073035S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9860,7 +9829,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:28:42 GMT + - Tue, 13 Jul 2021 13:17:58 GMT expires: - '-1' pragma: @@ -9877,7 +9846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '133' x-powered-by: - ASP.NET status: @@ -9897,18 +9866,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M13.4716064S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M16.5371763S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9917,7 +9886,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:29:13 GMT + - Tue, 13 Jul 2021 13:18:28 GMT expires: - '-1' pragma: @@ -9934,7 +9903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '132' x-powered-by: - ASP.NET status: @@ -9954,18 +9923,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M43.8933892S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M47.0414245S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -9974,7 +9943,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:29:44 GMT + - Tue, 13 Jul 2021 13:18:59 GMT expires: - '-1' pragma: @@ -9991,7 +9960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '131' x-powered-by: - ASP.NET status: @@ -10011,18 +9980,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M14.3675203S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M17.7499828S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10031,7 +10000,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:30:14 GMT + - Tue, 13 Jul 2021 13:19:30 GMT expires: - '-1' pragma: @@ -10048,7 +10017,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '130' x-powered-by: - ASP.NET status: @@ -10068,27 +10037,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M44.961761S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M48.1625902S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:30:44 GMT + - Tue, 13 Jul 2021 13:20:00 GMT expires: - '-1' pragma: @@ -10105,7 +10074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '129' x-powered-by: - ASP.NET status: @@ -10125,18 +10094,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M15.4556176S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M18.5722146S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10145,7 +10114,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:31:15 GMT + - Tue, 13 Jul 2021 13:20:31 GMT expires: - '-1' pragma: @@ -10162,7 +10131,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '128' x-powered-by: - ASP.NET status: @@ -10182,18 +10151,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M45.8575525S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M49.0279031S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T16:50:59.7934962Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10202,7 +10171,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:31:45 GMT + - Tue, 13 Jul 2021 13:21:01 GMT expires: - '-1' pragma: @@ -10219,7 +10188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '127' x-powered-by: - ASP.NET status: @@ -10239,27 +10208,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93a14a87-71f3-4110-ad1b-1b1c9ceb8590","name":"93a14a87-71f3-4110-ad1b-1b1c9ceb8590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M11.3029632S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M20.3298226S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-14T16:50:59.7934962Z","endTime":"2021-06-14T17:32:11.0964594Z","activityId":"b173b166-cd30-11eb-bd44-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1223' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:32:15 GMT + - Tue, 13 Jul 2021 13:21:33 GMT expires: - '-1' pragma: @@ -10276,7 +10245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '126' x-powered-by: - ASP.NET status: @@ -10290,37 +10259,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T16:50:59.7934962Z","protectedItemDataId":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T16:51:03.12081Z","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M50.7547162S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '2356' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:32:47 GMT + - Tue, 13 Jul 2021 13:22: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: @@ -10330,66 +10302,69 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '125' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-14T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M21.3022912S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: - 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/3c18a65b-15a2-45b3-9ca1-b033592b0d02?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '1159' + content-type: + - application/json date: - - Mon, 14 Jun 2021 17:32:49 GMT + - Tue, 13 Jul 2021 13:22: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/3c18a65b-15a2-45b3-9ca1-b033592b0d02?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + 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: @@ -10398,36 +10373,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3c18a65b-15a2-45b3-9ca1-b033592b0d02?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"3c18a65b-15a2-45b3-9ca1-b033592b0d02","name":"3c18a65b-15a2-45b3-9ca1-b033592b0d02","status":"Succeeded","startTime":"2021-06-14T17:32:49.0828449Z","endTime":"2021-06-14T17:32:49.0828449Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e0af6520-6fa7-42ea-8dc9-2b9d00226755"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M51.7331232S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:32:50 GMT + - Tue, 13 Jul 2021 13:23: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: @@ -10437,7 +10416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '123' x-powered-by: - ASP.NET status: @@ -10451,33 +10430,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.266988S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M22.1532477S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1155' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:32:52 GMT + - Tue, 13 Jul 2021 13:23:34 GMT expires: - '-1' pragma: @@ -10494,7 +10473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '122' x-powered-by: - ASP.NET status: @@ -10514,27 +10493,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.9261242S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M52.6474471S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Mon, 14 Jun 2021 17:32:52 GMT + - Tue, 13 Jul 2021 13:24:05 GMT expires: - '-1' pragma: @@ -10551,12 +10530,1651 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M23.2639802S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:24: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: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M53.6625828S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:44:12.6196333Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:25: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: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54b259d9-f238-41cf-a00b-e18eee36eb6f","name":"54b259d9-f238-41cf-a00b-e18eee36eb6f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M13.1502698S","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":"8/12/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T12:44:12.6196333Z","endTime":"2021-07-13T13:25:25.7699031Z","activityId":"04a4b3ac-e3d8-11eb-9c76-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1223' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:25: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: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:44:12.6196333Z","protectedItemDataId":"35185876747886","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-07-13T12:44:15.9731418Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:26: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: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/038ee93a-bbf6-4d4a-8ada-883cabe7826c?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 13:26: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/038ee93a-bbf6-4d4a-8ada-883cabe7826c?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/038ee93a-bbf6-4d4a-8ada-883cabe7826c?api-version=2021-01-01 + response: + body: + string: '{"id":"038ee93a-bbf6-4d4a-8ada-883cabe7826c","name":"038ee93a-bbf6-4d4a-8ada-883cabe7826c","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:26: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/038ee93a-bbf6-4d4a-8ada-883cabe7826c?api-version=2021-01-01 + response: + body: + string: '{"id":"038ee93a-bbf6-4d4a-8ada-883cabe7826c","name":"038ee93a-bbf6-4d4a-8ada-883cabe7826c","status":"Succeeded","startTime":"2021-07-13T13:26:08.318149Z","endTime":"2021-07-13T13:26:08.318149Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"60cdb488-49d9-4e15-a297-fd79a22f53d7"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:26:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.2011933S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1155' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:26:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.8838647S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1155' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:26:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.2792609S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1155' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13: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: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34.7297157S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:26: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: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M5.1646207S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:27: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M35.5996569S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:27: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M6.1362553S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:28: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M36.7276873S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:28: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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.2646419S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:29: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M37.7016578S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:29: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: + - '141' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M8.3558962S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:30: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: + - '140' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M38.9272221S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:30:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M9.3506459S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:31: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: + - '138' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M39.7963557S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:31:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M10.2176464S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:32: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: + - '136' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M40.7092678S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:32: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: + - '135' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M11.2542811S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:33: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: + - '134' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M41.6906398S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:33: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: + - '133' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M12.1101343S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:34: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: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M42.5798244S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:34:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M13.35058S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1155' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:35: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: + - '130' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M43.8487659S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:35: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: + - '129' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK - request: body: null headers: @@ -10571,27 +12189,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.4034172S","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/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M15.2457145S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:32:52 GMT + - Tue, 13 Jul 2021 13:36:23 GMT expires: - '-1' pragma: @@ -10608,7 +12226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '128' x-powered-by: - ASP.NET status: @@ -10628,27 +12246,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35.0141534S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M45.6669434S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:33:23 GMT + - Tue, 13 Jul 2021 13:36:54 GMT expires: - '-1' pragma: @@ -10665,7 +12283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '127' x-powered-by: - ASP.NET status: @@ -10685,18 +12303,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M5.5622682S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M16.0388208S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10705,7 +12323,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:33:54 GMT + - Tue, 13 Jul 2021 13:37:24 GMT expires: - '-1' pragma: @@ -10722,7 +12340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '126' x-powered-by: - ASP.NET status: @@ -10742,27 +12360,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M36.0270171S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M46.4413338S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:34:24 GMT + - Tue, 13 Jul 2021 13:37:55 GMT expires: - '-1' pragma: @@ -10779,7 +12397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '125' x-powered-by: - ASP.NET status: @@ -10799,18 +12417,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M6.5600163S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M16.8915512S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10819,7 +12437,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:34:55 GMT + - Tue, 13 Jul 2021 13:38:25 GMT expires: - '-1' pragma: @@ -10836,7 +12454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '124' x-powered-by: - ASP.NET status: @@ -10856,27 +12474,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M37.4478084S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M47.3398554S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:35:26 GMT + - Tue, 13 Jul 2021 13:38:55 GMT expires: - '-1' pragma: @@ -10893,7 +12511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '123' x-powered-by: - ASP.NET status: @@ -10913,27 +12531,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.95952S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M17.8640965S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:35:57 GMT + - Tue, 13 Jul 2021 13:39:26 GMT expires: - '-1' pragma: @@ -10950,7 +12568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '122' x-powered-by: - ASP.NET status: @@ -10970,27 +12588,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M38.4025773S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M48.4818654S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:36:27 GMT + - Tue, 13 Jul 2021 13:39:57 GMT expires: - '-1' pragma: @@ -11007,7 +12625,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '121' x-powered-by: - ASP.NET status: @@ -11027,18 +12645,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M8.8649821S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M19.2083117S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11047,7 +12665,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:36:57 GMT + - Tue, 13 Jul 2021 13:40:27 GMT expires: - '-1' pragma: @@ -11064,7 +12682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '120' x-powered-by: - ASP.NET status: @@ -11084,27 +12702,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M39.6144801S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M49.6856335S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:37:28 GMT + - Tue, 13 Jul 2021 13:40:58 GMT expires: - '-1' pragma: @@ -11121,7 +12739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '119' x-powered-by: - ASP.NET status: @@ -11141,27 +12759,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M10.2170429S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M20.1586916S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:37:58 GMT + - Tue, 13 Jul 2021 13:41:28 GMT expires: - '-1' pragma: @@ -11178,7 +12796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '118' x-powered-by: - ASP.NET status: @@ -11198,27 +12816,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M40.7835722S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M50.5439359S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:38:29 GMT + - Tue, 13 Jul 2021 13:41:58 GMT expires: - '-1' pragma: @@ -11235,7 +12853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '117' x-powered-by: - ASP.NET status: @@ -11255,27 +12873,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M11.2331467S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M21.0042569S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:39:00 GMT + - Tue, 13 Jul 2021 13:42:29 GMT expires: - '-1' pragma: @@ -11292,7 +12910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '116' x-powered-by: - ASP.NET status: @@ -11312,27 +12930,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M41.6753193S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M51.7045053S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:39:31 GMT + - Tue, 13 Jul 2021 13:43:00 GMT expires: - '-1' pragma: @@ -11349,7 +12967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '115' x-powered-by: - ASP.NET status: @@ -11369,27 +12987,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M12.1899212S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M22.1533S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1155' content-type: - application/json date: - - Mon, 14 Jun 2021 17:40:01 GMT + - Tue, 13 Jul 2021 13:43:30 GMT expires: - '-1' pragma: @@ -11406,7 +13024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '114' x-powered-by: - ASP.NET status: @@ -11426,18 +13044,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M42.7139818S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M52.5251093S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11446,7 +13064,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:40:31 GMT + - Tue, 13 Jul 2021 13:44:00 GMT expires: - '-1' pragma: @@ -11463,7 +13081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '113' x-powered-by: - ASP.NET status: @@ -11483,18 +13101,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M13.2445863S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M22.9940531S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11503,7 +13121,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:41:01 GMT + - Tue, 13 Jul 2021 13:44:31 GMT expires: - '-1' pragma: @@ -11520,7 +13138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '112' x-powered-by: - ASP.NET status: @@ -11540,18 +13158,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M43.9475699S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M53.4009597S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11560,7 +13178,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:41:32 GMT + - Tue, 13 Jul 2021 13:45:01 GMT expires: - '-1' pragma: @@ -11577,7 +13195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '111' x-powered-by: - ASP.NET status: @@ -11597,18 +13215,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M14.7731243S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M23.9093547S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11617,7 +13235,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:42:04 GMT + - Tue, 13 Jul 2021 13:45:32 GMT expires: - '-1' pragma: @@ -11634,7 +13252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '110' x-powered-by: - ASP.NET status: @@ -11654,27 +13272,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M45.2001186S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M54.346804S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:42:34 GMT + - Tue, 13 Jul 2021 13:46:02 GMT expires: - '-1' pragma: @@ -11691,7 +13309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '109' x-powered-by: - ASP.NET status: @@ -11711,27 +13329,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M15.7370516S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M24.785506S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:43:04 GMT + - Tue, 13 Jul 2021 13:46:33 GMT expires: - '-1' pragma: @@ -11748,7 +13366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '108' x-powered-by: - ASP.NET status: @@ -11768,27 +13386,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M46.2347851S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M55.2237015S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:43:35 GMT + - Tue, 13 Jul 2021 13:47:03 GMT expires: - '-1' pragma: @@ -11805,7 +13423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '107' x-powered-by: - ASP.NET status: @@ -11825,27 +13443,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M16.9259654S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M25.67546S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 14 Jun 2021 17:44:05 GMT + - Tue, 13 Jul 2021 13:47:33 GMT expires: - '-1' pragma: @@ -11862,7 +13480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '106' x-powered-by: - ASP.NET status: @@ -11882,27 +13500,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M47.9413978S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M56.081499S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:44:37 GMT + - Tue, 13 Jul 2021 13:48:04 GMT expires: - '-1' pragma: @@ -11919,7 +13537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '105' x-powered-by: - ASP.NET status: @@ -11939,27 +13557,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M19.2850657S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M26.6662388S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:45:09 GMT + - Tue, 13 Jul 2021 13:48:35 GMT expires: - '-1' pragma: @@ -11976,7 +13594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '104' x-powered-by: - ASP.NET status: @@ -11996,27 +13614,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M50.8579268S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M57.201226S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:45:39 GMT + - Tue, 13 Jul 2021 13:49:05 GMT expires: - '-1' pragma: @@ -12033,7 +13651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '103' x-powered-by: - ASP.NET status: @@ -12053,27 +13671,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M21.7593285S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M27.6791341S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:46:11 GMT + - Tue, 13 Jul 2021 13:49:36 GMT expires: - '-1' pragma: @@ -12090,7 +13708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '102' x-powered-by: - ASP.NET status: @@ -12110,27 +13728,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M54.0184723S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M58.5490625S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:46:43 GMT + - Tue, 13 Jul 2021 13:50:06 GMT expires: - '-1' pragma: @@ -12147,7 +13765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '101' x-powered-by: - ASP.NET status: @@ -12167,27 +13785,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M24.8976543S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M28.9913194S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:47:14 GMT + - Tue, 13 Jul 2021 13:50:37 GMT expires: - '-1' pragma: @@ -12204,7 +13822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '100' x-powered-by: - ASP.NET status: @@ -12224,27 +13842,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M55.4090457S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M59.3914224S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:47:43 GMT + - Tue, 13 Jul 2021 13:51:08 GMT expires: - '-1' pragma: @@ -12261,7 +13879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '99' x-powered-by: - ASP.NET status: @@ -12281,27 +13899,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M26.0723672S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M29.8333645S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:48:14 GMT + - Tue, 13 Jul 2021 13:51:38 GMT expires: - '-1' pragma: @@ -12318,7 +13936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '98' x-powered-by: - ASP.NET status: @@ -12338,27 +13956,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M56.5032964S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M0.4376319S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:48:45 GMT + - Tue, 13 Jul 2021 13:52:08 GMT expires: - '-1' pragma: @@ -12375,7 +13993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '97' x-powered-by: - ASP.NET status: @@ -12395,27 +14013,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M26.9134579S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M31.1212153S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:49:15 GMT + - Tue, 13 Jul 2021 13:52:39 GMT expires: - '-1' pragma: @@ -12432,7 +14050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '96' x-powered-by: - ASP.NET status: @@ -12452,27 +14070,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M57.4899273S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M1.5448628S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:49:46 GMT + - Tue, 13 Jul 2021 13:53:09 GMT expires: - '-1' pragma: @@ -12489,7 +14107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '95' x-powered-by: - ASP.NET status: @@ -12509,27 +14127,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M29.5552016S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M31.9408069S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:50:18 GMT + - Tue, 13 Jul 2021 13:53:39 GMT expires: - '-1' pragma: @@ -12546,7 +14164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '94' x-powered-by: - ASP.NET status: @@ -12566,27 +14184,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M59.9976465S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M2.3939767S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:50:49 GMT + - Tue, 13 Jul 2021 13:54:11 GMT expires: - '-1' pragma: @@ -12603,7 +14221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '93' x-powered-by: - ASP.NET status: @@ -12623,27 +14241,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M30.7908424S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M32.8808995S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:51:19 GMT + - Tue, 13 Jul 2021 13:54:41 GMT expires: - '-1' pragma: @@ -12660,7 +14278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '92' x-powered-by: - ASP.NET status: @@ -12680,27 +14298,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M1.4509489S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M3.6406862S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:51:50 GMT + - Tue, 13 Jul 2021 13:55:11 GMT expires: - '-1' pragma: @@ -12717,7 +14335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '91' x-powered-by: - ASP.NET status: @@ -12737,27 +14355,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M31.9634347S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M34.0944192S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 14 Jun 2021 17:52:21 GMT + - Tue, 13 Jul 2021 13:55:42 GMT expires: - '-1' pragma: @@ -12774,7 +14392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '90' x-powered-by: - ASP.NET status: @@ -12794,27 +14412,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M2.4929885S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M4.5252129S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:52:51 GMT + - Tue, 13 Jul 2021 13:56:13 GMT expires: - '-1' pragma: @@ -12831,7 +14449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '89' x-powered-by: - ASP.NET status: @@ -12851,27 +14469,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M32.9682064S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M34.954774S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:53:21 GMT + - Tue, 13 Jul 2021 13:56:43 GMT expires: - '-1' pragma: @@ -12888,7 +14506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '88' x-powered-by: - ASP.NET status: @@ -12908,27 +14526,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M3.4303374S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M5.5263771S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-14T17:32:49.0828449Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T13:26:08.318149Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 14 Jun 2021 17:53:52 GMT + - Tue, 13 Jul 2021 13:57:13 GMT expires: - '-1' pragma: @@ -12945,7 +14563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '87' x-powered-by: - ASP.NET status: @@ -12965,27 +14583,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e0af6520-6fa7-42ea-8dc9-2b9d00226755","name":"e0af6520-6fa7-42ea-8dc9-2b9d00226755","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M11.5567989S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60cdb488-49d9-4e15-a297-fd79a22f53d7","name":"60cdb488-49d9-4e15-a297-fd79a22f53d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M12.4644338S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/14/2021 12:00:00 AM","Backup Size":"1810 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-14T17:32:49.0828449Z","endTime":"2021-06-14T17:54:00.6396438Z","activityId":"8857bcca-cd36-11eb-858d-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM","Backup Size":"1928 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T13:26:08.318149Z","endTime":"2021-07-13T13:57:20.7825828Z","activityId":"dff08648-e3dd-11eb-bd1f-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1222' + - '1221' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:22 GMT + - Tue, 13 Jul 2021 13:57:44 GMT expires: - '-1' pragma: @@ -13002,7 +14620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '86' x-powered-by: - ASP.NET status: @@ -13022,8 +14640,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13031,16 +14649,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T17:32:49.0828449Z","protectedItemDataId":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T17:32:51.9185787Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T13:26:08.318149Z","protectedItemDataId":"35185876747886","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-07-13T13:26:11.3141238Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2358' + - '2362' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:53 GMT + - Tue, 13 Jul 2021 13:58:15 GMT expires: - '-1' pragma: @@ -13076,18 +14694,18 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/6431250817312","name":"6431250817312","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-14T17:32:51.9185787Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/49260512733141","name":"49260512733141","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T13:26:11.3141238Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"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/12541878778583","name":"12541878778583","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-14T16:51:03.12081Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + retention setting and try again."}}}},{"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/52380587175390","name":"52380587175390","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T12:44:15.9731418Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}]}' @@ -13095,11 +14713,11 @@ interactions: cache-control: - no-cache content-length: - - '2911' + - '2915' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:54 GMT + - Tue, 13 Jul 2021 13:58:17 GMT expires: - '-1' pragma: @@ -13135,8 +14753,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13144,16 +14762,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T17:32:49.0828449Z","protectedItemDataId":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T17:32:51.9185787Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T13:26:08.318149Z","protectedItemDataId":"35185876747886","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-07-13T13:26:11.3141238Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2358' + - '2362' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:54 GMT + - Tue, 13 Jul 2021 13:58:17 GMT expires: - '-1' pragma: @@ -13169,7 +14787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -13189,15 +14807,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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/6431250817312?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/49260512733141?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/6431250817312","name":"6431250817312","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-14T17:32:51.9185787Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/49260512733141","name":"49260512733141","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T13:26:11.3141238Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -13205,11 +14823,11 @@ interactions: cache-control: - no-cache content-length: - - '1449' + - '1451' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:55 GMT + - Tue, 13 Jul 2021 13:58:18 GMT expires: - '-1' pragma: @@ -13245,8 +14863,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13254,16 +14872,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T17:32:49.0828449Z","protectedItemDataId":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T17:32:51.9185787Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T13:26:08.318149Z","protectedItemDataId":"35185876747886","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-07-13T13:26:11.3141238Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2358' + - '2362' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:55 GMT + - Tue, 13 Jul 2021 13:58:19 GMT expires: - '-1' pragma: @@ -13279,7 +14897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -13299,15 +14917,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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/12541878778583?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/52380587175390?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/12541878778583","name":"12541878778583","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-14T16:51:03.12081Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/52380587175390","name":"52380587175390","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T12:44:15.9731418Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -13315,11 +14933,11 @@ interactions: cache-control: - no-cache content-length: - - '1449' + - '1451' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:56 GMT + - Tue, 13 Jul 2021 13:58:20 GMT expires: - '-1' pragma: @@ -13355,8 +14973,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13372,7 +14990,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:57 GMT + - Tue, 13 Jul 2021 13:58:21 GMT expires: - '-1' pragma: @@ -13408,8 +15026,8 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13417,16 +15035,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T17:32:49.0828449Z","protectedItemDataId":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T17:32:51.9185787Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T13:26:08.318149Z","protectedItemDataId":"35185876747886","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-07-13T13:26:11.3141238Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2358' + - '2362' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:57 GMT + - Tue, 13 Jul 2021 13:58:21 GMT expires: - '-1' pragma: @@ -13463,8 +15081,8 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13472,16 +15090,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-14T17:32:49.0828449Z","protectedItemDataId":"851844462","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-14T17:32:51.9185787Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T13:26:08.318149Z","protectedItemDataId":"35185876747886","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-07-13T13:26:11.3141238Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2358' + - '2362' content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:58 GMT + - Tue, 13 Jul 2021 13:58:23 GMT expires: - '-1' pragma: @@ -13497,7 +15115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -13520,8 +15138,8 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -13531,17 +15149,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Jun 2021 17:54:58 GMT + - Tue, 13 Jul 2021 13: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/backupOperationResults/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -13570,15 +15188,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13587,7 +15205,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:54:58 GMT + - Tue, 13 Jul 2021 13:58:25 GMT expires: - '-1' pragma: @@ -13624,15 +15242,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13641,7 +15259,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:00 GMT + - Tue, 13 Jul 2021 13:58:26 GMT expires: - '-1' pragma: @@ -13678,15 +15296,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13695,7 +15313,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:01 GMT + - Tue, 13 Jul 2021 13:58:28 GMT expires: - '-1' pragma: @@ -13732,15 +15350,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13749,7 +15367,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:02 GMT + - Tue, 13 Jul 2021 13:58:29 GMT expires: - '-1' pragma: @@ -13786,15 +15404,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13803,7 +15421,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:03 GMT + - Tue, 13 Jul 2021 13:58:30 GMT expires: - '-1' pragma: @@ -13840,15 +15458,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13857,7 +15475,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:04 GMT + - Tue, 13 Jul 2021 13:58:31 GMT expires: - '-1' pragma: @@ -13894,15 +15512,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13911,7 +15529,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:06 GMT + - Tue, 13 Jul 2021 13:58:33 GMT expires: - '-1' pragma: @@ -13948,15 +15566,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13965,7 +15583,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:07 GMT + - Tue, 13 Jul 2021 13:58:34 GMT expires: - '-1' pragma: @@ -14002,15 +15620,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14019,7 +15637,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:08 GMT + - Tue, 13 Jul 2021 13:58:35 GMT expires: - '-1' pragma: @@ -14056,15 +15674,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14073,7 +15691,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:09 GMT + - Tue, 13 Jul 2021 13:58:37 GMT expires: - '-1' pragma: @@ -14110,15 +15728,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14127,7 +15745,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:10 GMT + - Tue, 13 Jul 2021 13:58:38 GMT expires: - '-1' pragma: @@ -14164,15 +15782,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14181,7 +15799,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:12 GMT + - Tue, 13 Jul 2021 13:58:39 GMT expires: - '-1' pragma: @@ -14218,15 +15836,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14235,7 +15853,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:13 GMT + - Tue, 13 Jul 2021 13:58:41 GMT expires: - '-1' pragma: @@ -14272,15 +15890,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14289,7 +15907,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:14 GMT + - Tue, 13 Jul 2021 13:58:42 GMT expires: - '-1' pragma: @@ -14326,15 +15944,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14343,7 +15961,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:15 GMT + - Tue, 13 Jul 2021 13:58:44 GMT expires: - '-1' pragma: @@ -14380,15 +15998,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14397,7 +16015,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:16 GMT + - Tue, 13 Jul 2021 13:58:45 GMT expires: - '-1' pragma: @@ -14434,15 +16052,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14451,7 +16069,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:18 GMT + - Tue, 13 Jul 2021 13:58:46 GMT expires: - '-1' pragma: @@ -14488,15 +16106,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14505,7 +16123,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:19 GMT + - Tue, 13 Jul 2021 13:58:47 GMT expires: - '-1' pragma: @@ -14542,15 +16160,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14559,7 +16177,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:20 GMT + - Tue, 13 Jul 2021 13:58:48 GMT expires: - '-1' pragma: @@ -14596,15 +16214,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14613,7 +16231,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:21 GMT + - Tue, 13 Jul 2021 13:58:50 GMT expires: - '-1' pragma: @@ -14650,15 +16268,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14667,7 +16285,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:23 GMT + - Tue, 13 Jul 2021 13:58:51 GMT expires: - '-1' pragma: @@ -14704,15 +16322,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14721,7 +16339,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:24 GMT + - Tue, 13 Jul 2021 13:58:52 GMT expires: - '-1' pragma: @@ -14758,15 +16376,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14775,7 +16393,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:25 GMT + - Tue, 13 Jul 2021 13:58:53 GMT expires: - '-1' pragma: @@ -14812,15 +16430,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14829,7 +16447,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:27 GMT + - Tue, 13 Jul 2021 13:58:54 GMT expires: - '-1' pragma: @@ -14866,15 +16484,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14883,7 +16501,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:28 GMT + - Tue, 13 Jul 2021 13:58:57 GMT expires: - '-1' pragma: @@ -14920,15 +16538,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14937,7 +16555,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:30 GMT + - Tue, 13 Jul 2021 13:58:58 GMT expires: - '-1' pragma: @@ -14974,15 +16592,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14991,7 +16609,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:31 GMT + - Tue, 13 Jul 2021 13:58:59 GMT expires: - '-1' pragma: @@ -15028,15 +16646,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15045,7 +16663,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:32 GMT + - Tue, 13 Jul 2021 13:59:00 GMT expires: - '-1' pragma: @@ -15082,15 +16700,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15099,7 +16717,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:33 GMT + - Tue, 13 Jul 2021 13:59:01 GMT expires: - '-1' pragma: @@ -15136,15 +16754,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15153,7 +16771,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:34 GMT + - Tue, 13 Jul 2021 13:59:03 GMT expires: - '-1' pragma: @@ -15190,15 +16808,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15207,7 +16825,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:36 GMT + - Tue, 13 Jul 2021 13:59:04 GMT expires: - '-1' pragma: @@ -15244,15 +16862,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15261,7 +16879,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:37 GMT + - Tue, 13 Jul 2021 13:59:05 GMT expires: - '-1' pragma: @@ -15298,15 +16916,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15315,7 +16933,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:38 GMT + - Tue, 13 Jul 2021 13:59:06 GMT expires: - '-1' pragma: @@ -15352,15 +16970,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15369,7 +16987,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:39 GMT + - Tue, 13 Jul 2021 13:59:08 GMT expires: - '-1' pragma: @@ -15406,15 +17024,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15423,7 +17041,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:40 GMT + - Tue, 13 Jul 2021 13:59:09 GMT expires: - '-1' pragma: @@ -15460,15 +17078,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15477,7 +17095,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:42 GMT + - Tue, 13 Jul 2021 13:59:10 GMT expires: - '-1' pragma: @@ -15514,15 +17132,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15531,7 +17149,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:43 GMT + - Tue, 13 Jul 2021 13:59:11 GMT expires: - '-1' pragma: @@ -15568,15 +17186,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15585,7 +17203,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:44 GMT + - Tue, 13 Jul 2021 13:59:13 GMT expires: - '-1' pragma: @@ -15622,15 +17240,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15639,7 +17257,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:45 GMT + - Tue, 13 Jul 2021 13:59:15 GMT expires: - '-1' pragma: @@ -15676,15 +17294,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15693,7 +17311,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:46 GMT + - Tue, 13 Jul 2021 13:59:16 GMT expires: - '-1' pragma: @@ -15730,15 +17348,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15747,7 +17365,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:48 GMT + - Tue, 13 Jul 2021 13:59:17 GMT expires: - '-1' pragma: @@ -15784,15 +17402,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15801,7 +17419,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:49 GMT + - Tue, 13 Jul 2021 13:59:19 GMT expires: - '-1' pragma: @@ -15838,15 +17456,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15855,7 +17473,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:50 GMT + - Tue, 13 Jul 2021 13:59:20 GMT expires: - '-1' pragma: @@ -15892,15 +17510,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15909,7 +17527,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:51 GMT + - Tue, 13 Jul 2021 13:59:21 GMT expires: - '-1' pragma: @@ -15946,15 +17564,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15963,7 +17581,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:52 GMT + - Tue, 13 Jul 2021 13:59:22 GMT expires: - '-1' pragma: @@ -16000,15 +17618,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16017,7 +17635,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:54 GMT + - Tue, 13 Jul 2021 13:59:23 GMT expires: - '-1' pragma: @@ -16054,15 +17672,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16071,7 +17689,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:55 GMT + - Tue, 13 Jul 2021 13:59:25 GMT expires: - '-1' pragma: @@ -16108,15 +17726,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16125,7 +17743,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:56 GMT + - Tue, 13 Jul 2021 13:59:26 GMT expires: - '-1' pragma: @@ -16162,15 +17780,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16179,7 +17797,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:57 GMT + - Tue, 13 Jul 2021 13:59:27 GMT expires: - '-1' pragma: @@ -16216,15 +17834,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16233,7 +17851,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:55:59 GMT + - Tue, 13 Jul 2021 13:59:28 GMT expires: - '-1' pragma: @@ -16270,15 +17888,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16287,7 +17905,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:00 GMT + - Tue, 13 Jul 2021 13:59:30 GMT expires: - '-1' pragma: @@ -16324,15 +17942,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16341,7 +17959,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:01 GMT + - Tue, 13 Jul 2021 13:59:31 GMT expires: - '-1' pragma: @@ -16378,15 +17996,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16395,7 +18013,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:02 GMT + - Tue, 13 Jul 2021 13:59:32 GMT expires: - '-1' pragma: @@ -16432,15 +18050,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16449,7 +18067,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:03 GMT + - Tue, 13 Jul 2021 13:59:33 GMT expires: - '-1' pragma: @@ -16486,15 +18104,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16503,7 +18121,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:05 GMT + - Tue, 13 Jul 2021 13:59:35 GMT expires: - '-1' pragma: @@ -16540,15 +18158,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16557,7 +18175,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:06 GMT + - Tue, 13 Jul 2021 13:59:37 GMT expires: - '-1' pragma: @@ -16594,15 +18212,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16611,7 +18229,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:07 GMT + - Tue, 13 Jul 2021 13:59:38 GMT expires: - '-1' pragma: @@ -16648,15 +18266,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16665,7 +18283,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:08 GMT + - Tue, 13 Jul 2021 13:59:39 GMT expires: - '-1' pragma: @@ -16702,15 +18320,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16719,7 +18337,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:09 GMT + - Tue, 13 Jul 2021 13:59:41 GMT expires: - '-1' pragma: @@ -16756,15 +18374,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16773,7 +18391,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:11 GMT + - Tue, 13 Jul 2021 13:59:42 GMT expires: - '-1' pragma: @@ -16810,15 +18428,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16827,7 +18445,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:12 GMT + - Tue, 13 Jul 2021 13:59:43 GMT expires: - '-1' pragma: @@ -16864,15 +18482,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16881,7 +18499,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:13 GMT + - Tue, 13 Jul 2021 13:59:44 GMT expires: - '-1' pragma: @@ -16918,15 +18536,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16935,7 +18553,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:14 GMT + - Tue, 13 Jul 2021 13:59:45 GMT expires: - '-1' pragma: @@ -16972,15 +18590,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16989,7 +18607,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:16 GMT + - Tue, 13 Jul 2021 13:59:47 GMT expires: - '-1' pragma: @@ -17026,15 +18644,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17043,7 +18661,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:17 GMT + - Tue, 13 Jul 2021 13:59:48 GMT expires: - '-1' pragma: @@ -17080,15 +18698,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17097,7 +18715,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:18 GMT + - Tue, 13 Jul 2021 13:59:49 GMT expires: - '-1' pragma: @@ -17134,15 +18752,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17151,7 +18769,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:19 GMT + - Tue, 13 Jul 2021 13:59:50 GMT expires: - '-1' pragma: @@ -17188,15 +18806,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17205,7 +18823,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:20 GMT + - Tue, 13 Jul 2021 13:59:52 GMT expires: - '-1' pragma: @@ -17242,15 +18860,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17259,7 +18877,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:23 GMT + - Tue, 13 Jul 2021 13:59:53 GMT expires: - '-1' pragma: @@ -17296,15 +18914,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17313,7 +18931,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:24 GMT + - Tue, 13 Jul 2021 13:59:55 GMT expires: - '-1' pragma: @@ -17350,15 +18968,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17367,7 +18985,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:25 GMT + - Tue, 13 Jul 2021 13:59:56 GMT expires: - '-1' pragma: @@ -17404,15 +19022,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17421,7 +19039,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:26 GMT + - Tue, 13 Jul 2021 13:59:57 GMT expires: - '-1' pragma: @@ -17458,15 +19076,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17475,7 +19093,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:27 GMT + - Tue, 13 Jul 2021 13:59:59 GMT expires: - '-1' pragma: @@ -17512,15 +19130,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17529,7 +19147,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:29 GMT + - Tue, 13 Jul 2021 14:00:00 GMT expires: - '-1' pragma: @@ -17566,15 +19184,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17583,7 +19201,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:30 GMT + - Tue, 13 Jul 2021 14:00:01 GMT expires: - '-1' pragma: @@ -17620,15 +19238,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17637,7 +19255,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:31 GMT + - Tue, 13 Jul 2021 14:00:03 GMT expires: - '-1' pragma: @@ -17674,15 +19292,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17691,7 +19309,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:32 GMT + - Tue, 13 Jul 2021 14:00:04 GMT expires: - '-1' pragma: @@ -17728,15 +19346,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17745,7 +19363,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:33 GMT + - Tue, 13 Jul 2021 14:00:05 GMT expires: - '-1' pragma: @@ -17782,15 +19400,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17799,7 +19417,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:34 GMT + - Tue, 13 Jul 2021 14:00:06 GMT expires: - '-1' pragma: @@ -17836,15 +19454,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17853,7 +19471,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:36 GMT + - Tue, 13 Jul 2021 14:00:08 GMT expires: - '-1' pragma: @@ -17890,15 +19508,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17907,7 +19525,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:37 GMT + - Tue, 13 Jul 2021 14:00:09 GMT expires: - '-1' pragma: @@ -17944,15 +19562,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17961,7 +19579,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:38 GMT + - Tue, 13 Jul 2021 14:00:10 GMT expires: - '-1' pragma: @@ -17998,15 +19616,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18015,7 +19633,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:39 GMT + - Tue, 13 Jul 2021 14:00:11 GMT expires: - '-1' pragma: @@ -18052,15 +19670,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18069,7 +19687,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:40 GMT + - Tue, 13 Jul 2021 14:00:13 GMT expires: - '-1' pragma: @@ -18106,15 +19724,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18123,7 +19741,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:42 GMT + - Tue, 13 Jul 2021 14:00:14 GMT expires: - '-1' pragma: @@ -18160,15 +19778,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"InProgress","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18177,7 +19795,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:43 GMT + - Tue, 13 Jul 2021 14:00:15 GMT expires: - '-1' pragma: @@ -18214,285 +19832,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 - response: - body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 14 Jun 2021 17:56: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: - - '63' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 - response: - body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 14 Jun 2021 17:56: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: - - '62' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 - response: - body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 14 Jun 2021 17:56: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: - - '61' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 - response: - body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 14 Jun 2021 17:56: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: - - '60' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 - response: - body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"InProgress","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 14 Jun 2021 17:56: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: - - '59' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c23072d-ee7d-47f6-8d56-033ac3d1a502?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d3eb4942-168a-4a78-b785-b97041899279?api-version=2021-01-01 response: body: - string: '{"id":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","name":"2c23072d-ee7d-47f6-8d56-033ac3d1a502","status":"Succeeded","startTime":"2021-06-14T17:54:58.8484242Z","endTime":"2021-06-14T17:54:58.8484242Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d7abb6d3-3739-4a8d-918e-b3fd8264740b"}}' + string: '{"id":"d3eb4942-168a-4a78-b785-b97041899279","name":"d3eb4942-168a-4a78-b785-b97041899279","status":"Succeeded","startTime":"2021-07-13T13:58:25.1597071Z","endTime":"2021-07-13T13:58:25.1597071Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c1a925d5-0922-4e81-b5af-8987f251c3cf"}}' headers: cache-control: - no-cache @@ -18501,7 +19849,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:50 GMT + - Tue, 13 Jul 2021 14:00:16 GMT expires: - '-1' pragma: @@ -18517,7 +19865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '63' x-powered-by: - ASP.NET status: @@ -18538,16 +19886,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d7abb6d3-3739-4a8d-918e-b3fd8264740b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1a925d5-0922-4e81-b5af-8987f251c3cf?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d7abb6d3-3739-4a8d-918e-b3fd8264740b","name":"d7abb6d3-3739-4a8d-918e-b3fd8264740b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.1735222S","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-06-14T17:54:58.8484242Z","endTime":"2021-06-14T17:56:51.0219464Z","activityId":"a1fe1283-cd39-11eb-85df-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1a925d5-0922-4e81-b5af-8987f251c3cf","name":"c1a925d5-0922-4e81-b5af-8987f251c3cf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.1843802S","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-07-13T13:58:25.1597071Z","endTime":"2021-07-13T14:00:17.3440873Z","activityId":"618a493a-e3e2-11eb-a31a-00155ddc6812"}}' headers: cache-control: - no-cache @@ -18556,7 +19904,7 @@ interactions: content-type: - application/json date: - - Mon, 14 Jun 2021 17:56:52 GMT + - Tue, 13 Jul 2021 14:00:17 GMT expires: - '-1' pragma: @@ -18573,7 +19921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '117' x-powered-by: - ASP.NET status: @@ -18583,7 +19931,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -18595,9 +19943,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -18607,7 +19955,7 @@ interactions: content-length: - '0' date: - - Mon, 14 Jun 2021 17:56:54 GMT + - Tue, 13 Jul 2021 14:00:21 GMT expires: - '-1' pragma: 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 9beedddb3f7..9c026185429 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,13 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T17%3A19%3A46.7039959Z''\"","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-07-13T12%3A29%3A29.3054937Z''\"","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 @@ -32,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:19:46 GMT + - Tue, 13 Jul 2021 12:29:29 GMT expires: - '-1' pragma: @@ -44,7 +43,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '208' + - '209' status: code: 201 message: Created @@ -62,9 +61,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -80,7 +78,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:19:47 GMT + - Tue, 13 Jul 2021 12:29:29 GMT expires: - '-1' pragma: @@ -121,9 +119,8 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PATCH @@ -139,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:19:47 GMT + - Tue, 13 Jul 2021 12:29:30 GMT expires: - '-1' pragma: @@ -155,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -175,13 +172,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T17:19: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-07-13T12:28:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -190,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:47 GMT + - Tue, 13 Jul 2021 12:29:30 GMT expires: - '-1' pragma: @@ -225,34 +221,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -263,19 +260,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:48 GMT + - Tue, 13 Jul 2021 12:29:31 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 17:24:48 GMT + - Tue, 13 Jul 2021 12:34:31 GMT source-age: - - '48' + - '72' strict-transport-security: - max-age=31536000 vary: @@ -285,19 +282,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '2' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 5ecef89393b43a4e15b3e76857434f3d1737a116 + - d7d6d2d7164140fddbb41c665bbe86e9e2c46fa2 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1261-QPG + - cache-qpg1238-QPG x-timer: - - S1624295989.783637,VS0,VE0 + - S1626179372.930259,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -317,8 +314,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -332,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:48 GMT + - Tue, 13 Jul 2021 12:29:31 GMT expires: - '-1' pragma: @@ -400,24 +396,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_w1ArTxABthDcM4CZiuU89zaS5nm8y4e0","name":"vm_deploy_w1ArTxABthDcM4CZiuU89zaS5nm8y4e0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2447703744707253156","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T17:19:50.686081Z","duration":"PT0.9094929S","correlationId":"08153f98-8ef2-4cbd-b27b-59635c978dbc","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_WofjkapL9VtI6fMczH0VFwU2MEGzAIn6","name":"vm_deploy_WofjkapL9VtI6fMczH0VFwU2MEGzAIn6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11143899934965747746","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T12:29:33.9450223Z","duration":"PT0.9919332S","correlationId":"aed4458b-dffb-4958-8691-7d0568017049","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_w1ArTxABthDcM4CZiuU89zaS5nm8y4e0/operationStatuses/08585773108957010426?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WofjkapL9VtI6fMczH0VFwU2MEGzAIn6/operationStatuses/08585754275125245425?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2959' + - '2961' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:50 GMT + - Tue, 13 Jul 2021 12:29:33 GMT expires: - '-1' pragma: @@ -427,7 +422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -445,10 +440,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773108957010426?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/08585754275125245425?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -460,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:20 GMT + - Tue, 13 Jul 2021 12:30:04 GMT expires: - '-1' pragma: @@ -488,10 +482,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773108957010426?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/08585754275125245425?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -503,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:51 GMT + - Tue, 13 Jul 2021 12:30:34 GMT expires: - '-1' pragma: @@ -531,22 +524,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_w1ArTxABthDcM4CZiuU89zaS5nm8y4e0","name":"vm_deploy_w1ArTxABthDcM4CZiuU89zaS5nm8y4e0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2447703744707253156","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T17:20:24.5980552Z","duration":"PT34.8214671S","correlationId":"08153f98-8ef2-4cbd-b27b-59635c978dbc","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_WofjkapL9VtI6fMczH0VFwU2MEGzAIn6","name":"vm_deploy_WofjkapL9VtI6fMczH0VFwU2MEGzAIn6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11143899934965747746","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T12:30:19.8479569Z","duration":"PT46.8948678S","correlationId":"aed4458b-dffb-4958-8691-7d0568017049","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' + - '4086' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:51 GMT + - Tue, 13 Jul 2021 12:30:34 GMT expires: - '-1' pragma: @@ -574,8 +566,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -584,16 +575,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\": \"c47b14ec-13c7-4fa6-8c71-46a1ed1c1bc1\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9807c015-26d0-4dea-803d-44df4c4ac7b9\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_21c987625b0e4139b339eea35462e878\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_ec495186522d4818a68e53fe52805464\",\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_21c987625b0e4139b339eea35462e878\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_ec495186522d4818a68e53fe52805464\"\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\": @@ -607,16 +598,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\": \"2021-06-21T17:20:52+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T12:30:35+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_21c987625b0e4139b339eea35462e878\",\r\n \"statuses\": + \"clitest-vm000003_disk1_ec495186522d4818a68e53fe52805464\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T17:20:03.4642561+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T12:29:53.5368866+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T17:20:22.8079064+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T12:30:18.9118098+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}" @@ -628,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:51 GMT + - Tue, 13 Jul 2021 12:30:35 GMT expires: - '-1' pragma: @@ -645,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31962 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31985 status: code: 200 message: OK @@ -663,21 +654,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"53df256e-e15a-4886-8a08-5824f2ea7954\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"fa04e414-bd77-43ee-b973-31be9464b257\\\"\",\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\": \"cc4a9324-978e-4a73-bdf8-887da6c07495\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c2b2fafa-88e0-4778-bc81-a58031c77744\",\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/\\\"53df256e-e15a-4886-8a08-5824f2ea7954\\\"\",\r\n + \ \"etag\": \"W/\\\"fa04e414-bd77-43ee-b973-31be9464b257\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -686,8 +676,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\": - \"2aoakvs4apsexn3ypxkvnevxra.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-A0-8D-CB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"51nrdkegs51ebdme5sf25ap2pc.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C9-89-E9\",\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\": @@ -701,9 +691,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:52 GMT + - Tue, 13 Jul 2021 12:30:35 GMT etag: - - W/"53df256e-e15a-4886-8a08-5824f2ea7954" + - W/"fa04e414-bd77-43ee-b973-31be9464b257" expires: - '-1' pragma: @@ -720,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 94a7371b-6d48-43fc-b536-ae4a5d198a74 + - 66752e4f-5a2f-43d8-8839-01763f10658b status: code: 200 message: OK @@ -738,19 +728,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"1e425ef2-8d5e-4756-bbd5-ba631106c081\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"edfa2d40-02be-42ae-b867-59b9fdba2fda\\\"\",\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\": \"36de3c6a-6a73-4785-8072-1bc68825be39\",\r\n - \ \"ipAddress\": \"20.205.239.11\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"13320a6a-712d-4868-9c2d-b9d5859bcebb\",\r\n + \ \"ipAddress\": \"52.187.106.21\",\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 @@ -763,9 +752,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:52 GMT + - Tue, 13 Jul 2021 12:30:35 GMT etag: - - W/"1e425ef2-8d5e-4756-bbd5-ba631106c081" + - W/"edfa2d40-02be-42ae-b867-59b9fdba2fda" expires: - '-1' pragma: @@ -782,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 303f716e-155b-4f65-8fa2-963924c8e650 + - 7f555573-6138-4f24-b147-d1a57337da0f status: code: 200 message: OK @@ -800,8 +789,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -810,16 +798,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\": \"c47b14ec-13c7-4fa6-8c71-46a1ed1c1bc1\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9807c015-26d0-4dea-803d-44df4c4ac7b9\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_21c987625b0e4139b339eea35462e878\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_ec495186522d4818a68e53fe52805464\",\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_21c987625b0e4139b339eea35462e878\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_ec495186522d4818a68e53fe52805464\"\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\": @@ -837,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:21:19 GMT + - Tue, 13 Jul 2021 12:31:03 GMT expires: - '-1' pragma: @@ -854,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31961 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31984 status: code: 200 message: OK @@ -872,13 +860,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T17%3A19%3A46.7039959Z''\"","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-07-13T12%3A29%3A29.3054937Z''\"","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 @@ -887,7 +874,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:20 GMT + - Tue, 13 Jul 2021 12:31:03 GMT expires: - '-1' pragma: @@ -919,16 +906,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-22T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-22T03: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-07-13T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -937,7 +923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:20 GMT + - Tue, 13 Jul 2021 12:31:04 GMT expires: - '-1' pragma: @@ -973,25 +959,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '7011' + - '3231' content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:21 GMT + - Tue, 13 Jul 2021 12:31:05 GMT expires: - '-1' pragma: @@ -1024,53 +1009,48 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + string: '' 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/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '7011' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:22 GMT + - Tue, 13 Jul 2021 12: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/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' 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 @@ -1080,44 +1060,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + 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/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 17:21:23 GMT + - Tue, 13 Jul 2021 12: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1137,46 +1110,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:24 GMT + - Tue, 13 Jul 2021 12: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/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1191,46 +1157,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:25 GMT + - Tue, 13 Jul 2021 12:31: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/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1245,46 +1204,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:26 GMT + - Tue, 13 Jul 2021 12: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/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1299,46 +1251,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:27 GMT + - Tue, 13 Jul 2021 12: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/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1353,46 +1298,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:28 GMT + - Tue, 13 Jul 2021 12: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/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1407,46 +1345,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:30 GMT + - Tue, 13 Jul 2021 12: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/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1461,46 +1392,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:31 GMT + - Tue, 13 Jul 2021 12:31: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/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1515,46 +1439,35 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/002005b2-f63f-499f-ab1b-84017745ba35?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' - content-type: - - application/json date: - - Mon, 21 Jun 2021 17:21:32 GMT + - Tue, 13 Jul 2021 12:31: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' + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -1569,25 +1482,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","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;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1/protectableItems/vm;iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","name":"iaasvmcontainerv2;arvindtdiskbubbashtest1_group;arvindtdiskbubbashtest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arvindtdiskbubbashtest1_group/providers/Microsoft.Compute/virtualMachines/arvindtdiskbubbashtest1","virtualMachineVersion":"Compute","resourceGroup":"arvindtdiskbubbashtest1_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"arvindtdiskbubbashtest1","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.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv/protectableItems/vm;iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","name":"iaasvmcontainerv2;clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw;clitest-vmnoqsv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw/providers/Microsoft.Compute/virtualMachines/clitest-vmnoqsv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgroflbt7fhelxmdffm76ciodgrslsgfu5wvnokdhq5ipouqlb27jk2iobvzf2xt2lw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmnoqsv","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;vishakrg;vishakvm/protectableItems/vm;iaasvmcontainerv2;vishakrg;vishakvm","name":"iaasvmcontainerv2;vishakrg;vishakvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Compute/virtualMachines/vishakvm","virtualMachineVersion":"Compute","resourceGroup":"vishakrg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"vishakvm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '4491' content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:33 GMT + - Tue, 13 Jul 2021 12:31:19 GMT expires: - '-1' pragma: @@ -1603,14 +1515,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '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.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 @@ -1620,49 +1534,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","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/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:21:34 GMT + - Tue, 13 Jul 2021 12:31: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/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + 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: @@ -1677,16 +1590,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1695,7 +1607,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:36 GMT + - Tue, 13 Jul 2021 12:31:21 GMT expires: - '-1' pragma: @@ -1711,7 +1623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -1731,16 +1643,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1749,7 +1660,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:37 GMT + - Tue, 13 Jul 2021 12:31:22 GMT expires: - '-1' pragma: @@ -1765,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '148' x-powered-by: - ASP.NET status: @@ -1785,16 +1696,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1803,7 +1713,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:38 GMT + - Tue, 13 Jul 2021 12:31:23 GMT expires: - '-1' pragma: @@ -1819,7 +1729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '147' x-powered-by: - ASP.NET status: @@ -1839,16 +1749,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1857,7 +1766,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:39 GMT + - Tue, 13 Jul 2021 12:31:24 GMT expires: - '-1' pragma: @@ -1873,7 +1782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '146' x-powered-by: - ASP.NET status: @@ -1893,16 +1802,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1911,7 +1819,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:41 GMT + - Tue, 13 Jul 2021 12:31:25 GMT expires: - '-1' pragma: @@ -1927,7 +1835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '145' x-powered-by: - ASP.NET status: @@ -1947,16 +1855,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1965,7 +1872,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:42 GMT + - Tue, 13 Jul 2021 12:31:27 GMT expires: - '-1' pragma: @@ -1981,7 +1888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '144' x-powered-by: - ASP.NET status: @@ -2001,16 +1908,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2019,7 +1925,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:43 GMT + - Tue, 13 Jul 2021 12:31:28 GMT expires: - '-1' pragma: @@ -2035,7 +1941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '143' x-powered-by: - ASP.NET status: @@ -2055,16 +1961,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2073,7 +1978,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:44 GMT + - Tue, 13 Jul 2021 12:31:29 GMT expires: - '-1' pragma: @@ -2089,7 +1994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '142' x-powered-by: - ASP.NET status: @@ -2109,16 +2014,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2127,7 +2031,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:45 GMT + - Tue, 13 Jul 2021 12:31:30 GMT expires: - '-1' pragma: @@ -2143,7 +2047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '141' x-powered-by: - ASP.NET status: @@ -2163,16 +2067,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2181,7 +2084,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:47 GMT + - Tue, 13 Jul 2021 12:31:32 GMT expires: - '-1' pragma: @@ -2197,7 +2100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '140' x-powered-by: - ASP.NET status: @@ -2217,16 +2120,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2235,7 +2137,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:48 GMT + - Tue, 13 Jul 2021 12:31:33 GMT expires: - '-1' pragma: @@ -2251,7 +2153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '139' x-powered-by: - ASP.NET status: @@ -2271,16 +2173,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2289,7 +2190,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:49 GMT + - Tue, 13 Jul 2021 12:31:34 GMT expires: - '-1' pragma: @@ -2305,7 +2206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '138' x-powered-by: - ASP.NET status: @@ -2325,16 +2226,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2343,7 +2243,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:50 GMT + - Tue, 13 Jul 2021 12:31:35 GMT expires: - '-1' pragma: @@ -2359,7 +2259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '137' x-powered-by: - ASP.NET status: @@ -2379,16 +2279,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2397,7 +2296,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:51 GMT + - Tue, 13 Jul 2021 12:31:36 GMT expires: - '-1' pragma: @@ -2413,7 +2312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '136' x-powered-by: - ASP.NET status: @@ -2433,16 +2332,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2451,7 +2349,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:52 GMT + - Tue, 13 Jul 2021 12:31:38 GMT expires: - '-1' pragma: @@ -2467,7 +2365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '135' x-powered-by: - ASP.NET status: @@ -2487,16 +2385,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2505,7 +2402,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:54 GMT + - Tue, 13 Jul 2021 12:31:39 GMT expires: - '-1' pragma: @@ -2521,7 +2418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '134' x-powered-by: - ASP.NET status: @@ -2541,16 +2438,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2559,7 +2455,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:55 GMT + - Tue, 13 Jul 2021 12:31:40 GMT expires: - '-1' pragma: @@ -2575,7 +2471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '133' x-powered-by: - ASP.NET status: @@ -2595,16 +2491,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2613,7 +2508,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:56 GMT + - Tue, 13 Jul 2021 12:31:41 GMT expires: - '-1' pragma: @@ -2629,7 +2524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '132' x-powered-by: - ASP.NET status: @@ -2649,16 +2544,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2667,7 +2561,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:57 GMT + - Tue, 13 Jul 2021 12:31:43 GMT expires: - '-1' pragma: @@ -2683,7 +2577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '131' x-powered-by: - ASP.NET status: @@ -2703,16 +2597,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2721,7 +2614,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:59 GMT + - Tue, 13 Jul 2021 12:31:44 GMT expires: - '-1' pragma: @@ -2737,7 +2630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '130' x-powered-by: - ASP.NET status: @@ -2757,16 +2650,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2775,7 +2667,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:00 GMT + - Tue, 13 Jul 2021 12:31:45 GMT expires: - '-1' pragma: @@ -2791,7 +2683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '129' x-powered-by: - ASP.NET status: @@ -2811,16 +2703,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2829,7 +2720,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:01 GMT + - Tue, 13 Jul 2021 12:31:46 GMT expires: - '-1' pragma: @@ -2845,7 +2736,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '128' x-powered-by: - ASP.NET status: @@ -2865,16 +2756,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2883,7 +2773,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:02 GMT + - Tue, 13 Jul 2021 12:31:47 GMT expires: - '-1' pragma: @@ -2899,7 +2789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '127' x-powered-by: - ASP.NET status: @@ -2919,16 +2809,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"InProgress","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2937,7 +2826,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:03 GMT + - Tue, 13 Jul 2021 12:31:49 GMT expires: - '-1' pragma: @@ -2953,7 +2842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '126' x-powered-by: - ASP.NET status: @@ -2973,25 +2862,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/dfa1a4fe-a91b-4fb5-88d1-b210db776fa8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","name":"dfa1a4fe-a91b-4fb5-88d1-b210db776fa8","status":"Succeeded","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"2021-06-21T17:21:23.1845831Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c4fc1912-6edd-46e1-a7d6-e0b5d5669e69"}}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:05 GMT + - Tue, 13 Jul 2021 12:31:50 GMT expires: - '-1' pragma: @@ -3007,7 +2895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '125' x-powered-by: - ASP.NET status: @@ -3027,33 +2915,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c4fc1912-6edd-46e1-a7d6-e0b5d5669e69?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c4fc1912-6edd-46e1-a7d6-e0b5d5669e69","name":"c4fc1912-6edd-46e1-a7d6-e0b5d5669e69","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41.5687827S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T17:21:23.1845831Z","endTime":"2021-06-21T17:22:04.7533658Z","activityId":"17ef21b1-d2b5-11eb-b415-c8f750f92764"}}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:05 GMT + - Tue, 13 Jul 2021 12:31: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: @@ -3063,7 +2948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '124' x-powered-by: - ASP.NET status: @@ -3077,31 +2962,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"InProgress","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:06 GMT + - Tue, 13 Jul 2021 12:31:52 GMT expires: - '-1' pragma: @@ -3117,7 +3001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '123' x-powered-by: - ASP.NET status: @@ -3131,31 +3015,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d049b052-bb1d-40ac-9a1d-cadd44a946b6?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"id":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","name":"d049b052-bb1d-40ac-9a1d-cadd44a946b6","status":"Succeeded","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"2021-07-13T12:31:20.6147727Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7aa790a7-3d54-464d-a829-78ba14993b12"}}' headers: cache-control: - no-cache content-length: - - '1988' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:07 GMT + - Tue, 13 Jul 2021 12:31:54 GMT expires: - '-1' pragma: @@ -3171,7 +3054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '122' x-powered-by: - ASP.NET status: @@ -3185,37 +3068,38 @@ 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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7aa790a7-3d54-464d-a829-78ba14993b12?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7aa790a7-3d54-464d-a829-78ba14993b12","name":"7aa790a7-3d54-464d-a829-78ba14993b12","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.8235956S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T12:31:20.6147727Z","endTime":"2021-07-13T12:31:52.4383683Z","activityId":"2f4f17e8-e3d6-11eb-9d74-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1988' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:07 GMT + - Tue, 13 Jul 2021 12:31:54 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3231,61 +3115,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-07-21T00: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: - - -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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/6265c8bc-665f-4b02-9ef7-8918ec2bfa53?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 17:22: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/6265c8bc-665f-4b02-9ef7-8918ec2bfa53?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - request: body: null headers: @@ -3294,31 +3123,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6265c8bc-665f-4b02-9ef7-8918ec2bfa53?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"6265c8bc-665f-4b02-9ef7-8918ec2bfa53","name":"6265c8bc-665f-4b02-9ef7-8918ec2bfa53","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","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","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: - - '188' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:08 GMT + - Tue, 13 Jul 2021 12:31:54 GMT expires: - '-1' pragma: @@ -3348,31 +3176,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v -c --backup-management-type --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6265c8bc-665f-4b02-9ef7-8918ec2bfa53?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"6265c8bc-665f-4b02-9ef7-8918ec2bfa53","name":"6265c8bc-665f-4b02-9ef7-8918ec2bfa53","status":"Succeeded","startTime":"2021-06-21T17:22:08.8269567Z","endTime":"2021-06-21T17:22:08.8269567Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0"}}' + 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":"17593773527476","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1988' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:09 GMT + - Tue, 13 Jul 2021 12:31:55 GMT expires: - '-1' pragma: @@ -3388,7 +3215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3408,35 +3235,30 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-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/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.1903808S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + 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":"17593773527476","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1156' + - '1988' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:10 GMT + - Tue, 13 Jul 2021 12:31: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: @@ -3453,63 +3275,59 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-08-12T00: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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-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/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.7826655S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '' headers: + 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/051cfe7a-789a-4e89-aba1-67f0fcd689ad?api-version=2021-01-01 cache-control: - no-cache content-length: - - '1156' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:22:11 GMT + - Tue, 13 Jul 2021 12: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/051cfe7a-789a-4e89-aba1-67f0fcd689ad?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + 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: @@ -3518,41 +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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/051cfe7a-789a-4e89-aba1-67f0fcd689ad?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.2216195S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"051cfe7a-789a-4e89-aba1-67f0fcd689ad","name":"051cfe7a-789a-4e89-aba1-67f0fcd689ad","status":"Succeeded","startTime":"2021-07-13T12:31:57.111251Z","endTime":"2021-07-13T12:31:57.111251Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '302' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:11 GMT + - Tue, 13 Jul 2021 12: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: @@ -3562,7 +3375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3576,34 +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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.6097062S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.2971475S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1155' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:42 GMT + - Tue, 13 Jul 2021 12:31:58 GMT expires: - '-1' pragma: @@ -3620,7 +3432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -3640,28 +3452,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.9571697S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0207235S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1155' content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:13 GMT + - Tue, 13 Jul 2021 12:31:58 GMT expires: - '-1' pragma: @@ -3678,7 +3489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -3698,28 +3509,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.4530055S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.5006995S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1155' content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:43 GMT + - Tue, 13 Jul 2021 12:31:59 GMT expires: - '-1' pragma: @@ -3736,7 +3546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -3756,28 +3566,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.9354877S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32.960883S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1155' content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:14 GMT + - Tue, 13 Jul 2021 12:32:30 GMT expires: - '-1' pragma: @@ -3794,7 +3603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '147' x-powered-by: - ASP.NET status: @@ -3814,28 +3623,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.3330361S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.3647762S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:43 GMT + - Tue, 13 Jul 2021 12:33:00 GMT expires: - '-1' pragma: @@ -3852,7 +3660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '146' x-powered-by: - ASP.NET status: @@ -3872,19 +3680,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.7923033S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.0411695S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -3893,65 +3700,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:25: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: - - '142' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.2614067S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:25:44 GMT + - Tue, 13 Jul 2021 12:33:30 GMT expires: - '-1' pragma: @@ -3968,7 +3717,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '145' x-powered-by: - ASP.NET status: @@ -3988,956 +3737,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M6.6685687S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:26: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: - - '140' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.1172387S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:26: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: - - '139' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M7.4836198S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:27: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: - - '138' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M37.8798735S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:27: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: - - '137' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M8.5550628S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:28: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: - - '136' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M38.9995619S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:28: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: - - '135' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M9.7113153S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:29: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: - - '134' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M40.3507619S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:29: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: - - '133' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M10.7253901S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:30: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: - - '132' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M41.1560036S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:30: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: - - '131' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M11.6259257S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17: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: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M42.0532754S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:31: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: - - '129' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M12.4459433S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:32: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: - - '128' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M42.8935193S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:32: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: - - '127' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M13.3044082S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:33:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M43.6646041S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:33: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: - - '125' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M14.038129S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.4946053S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:34:22 GMT + - Tue, 13 Jul 2021 12:34:01 GMT expires: - '-1' pragma: @@ -4954,7 +3774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '144' x-powered-by: - ASP.NET status: @@ -4974,28 +3794,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M44.6331221S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.0213765S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:34:53 GMT + - Tue, 13 Jul 2021 12:34:32 GMT expires: - '-1' pragma: @@ -5012,7 +3831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '143' x-powered-by: - ASP.NET status: @@ -5032,28 +3851,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M15.0107221S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.4757787S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:35:23 GMT + - Tue, 13 Jul 2021 12:35:02 GMT expires: - '-1' pragma: @@ -5070,7 +3888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '142' x-powered-by: - ASP.NET status: @@ -5090,28 +3908,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M45.4357823S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M35.8818788S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:35:53 GMT + - Tue, 13 Jul 2021 12:35:33 GMT expires: - '-1' pragma: @@ -5128,7 +3945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '141' x-powered-by: - ASP.NET status: @@ -5148,28 +3965,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M15.8028899S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M6.6249355S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:36:24 GMT + - Tue, 13 Jul 2021 12:36:03 GMT expires: - '-1' pragma: @@ -5186,7 +4002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '140' x-powered-by: - ASP.NET status: @@ -5206,28 +4022,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M46.2490738S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.0598002S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:36:54 GMT + - Tue, 13 Jul 2021 12:36:33 GMT expires: - '-1' pragma: @@ -5244,7 +4059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '139' x-powered-by: - ASP.NET status: @@ -5264,28 +4079,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M16.7076189S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M7.5229816S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:37:25 GMT + - Tue, 13 Jul 2021 12:37:04 GMT expires: - '-1' pragma: @@ -5302,7 +4116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '138' x-powered-by: - ASP.NET status: @@ -5322,28 +4136,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M47.1362509S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M38.0174139S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:37:56 GMT + - Tue, 13 Jul 2021 12:37:35 GMT expires: - '-1' pragma: @@ -5360,7 +4173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '137' x-powered-by: - ASP.NET status: @@ -5380,28 +4193,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M17.512742S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M8.3556757S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:38:25 GMT + - Tue, 13 Jul 2021 12:38:05 GMT expires: - '-1' pragma: @@ -5418,7 +4230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '136' x-powered-by: - ASP.NET status: @@ -5438,28 +4250,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M48.0721189S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M38.7633195S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:38:56 GMT + - Tue, 13 Jul 2021 12:38:35 GMT expires: - '-1' pragma: @@ -5476,7 +4287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '135' x-powered-by: - ASP.NET status: @@ -5496,28 +4307,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M18.4880557S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M9.171952S","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":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 17:39:27 GMT + - Tue, 13 Jul 2021 12:39:06 GMT expires: - '-1' pragma: @@ -5534,7 +4344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '133' x-powered-by: - ASP.NET status: @@ -5554,28 +4364,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M48.8572989S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M39.6298594S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:39:57 GMT + - Tue, 13 Jul 2021 12:39:36 GMT expires: - '-1' pragma: @@ -5592,7 +4401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '132' x-powered-by: - ASP.NET status: @@ -5612,28 +4421,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M19.3166482S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M10.359688S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Mon, 21 Jun 2021 17:40:28 GMT + - Tue, 13 Jul 2021 12:40:07 GMT expires: - '-1' pragma: @@ -5650,7 +4458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '130' x-powered-by: - ASP.NET status: @@ -5670,28 +4478,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M50.1428763S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M40.7386723S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:40:58 GMT + - Tue, 13 Jul 2021 12:40:37 GMT expires: - '-1' pragma: @@ -5708,7 +4515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '129' x-powered-by: - ASP.NET status: @@ -5728,28 +4535,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M20.7446313S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M11.3903028S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:41:29 GMT + - Tue, 13 Jul 2021 12:41:08 GMT expires: - '-1' pragma: @@ -5766,7 +4572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '128' x-powered-by: - ASP.NET status: @@ -5786,28 +4592,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M51.1590956S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M41.9170816S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:41:59 GMT + - Tue, 13 Jul 2021 12:41:38 GMT expires: - '-1' pragma: @@ -5824,7 +4629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '127' x-powered-by: - ASP.NET status: @@ -5844,28 +4649,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M21.8534066S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M12.3535896S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:42:30 GMT + - Tue, 13 Jul 2021 12:42:09 GMT expires: - '-1' pragma: @@ -5882,7 +4686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '126' x-powered-by: - ASP.NET status: @@ -5902,28 +4706,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M52.5955771S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M42.7511656S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:43:01 GMT + - Tue, 13 Jul 2021 12:42:39 GMT expires: - '-1' pragma: @@ -5940,7 +4743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '125' x-powered-by: - ASP.NET status: @@ -5960,19 +4763,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M22.989206S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M13.1417205S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -5981,7 +4783,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:43:31 GMT + - Tue, 13 Jul 2021 12:43:10 GMT expires: - '-1' pragma: @@ -5998,7 +4800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '124' x-powered-by: - ASP.NET status: @@ -6018,28 +4820,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M53.5639121S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M43.5152806S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:44:02 GMT + - Tue, 13 Jul 2021 12:43:40 GMT expires: - '-1' pragma: @@ -6056,7 +4857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '123' x-powered-by: - ASP.NET status: @@ -6076,28 +4877,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M24.0246522S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M13.9223234S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:44:32 GMT + - Tue, 13 Jul 2021 12:44:10 GMT expires: - '-1' pragma: @@ -6114,7 +4914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '122' x-powered-by: - ASP.NET status: @@ -6134,28 +4934,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M54.4724765S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M44.5256702S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:45:03 GMT + - Tue, 13 Jul 2021 12:44:41 GMT expires: - '-1' pragma: @@ -6172,7 +4971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '121' x-powered-by: - ASP.NET status: @@ -6192,19 +4991,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M24.855707S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M14.9086625S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6213,7 +5011,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:45:33 GMT + - Tue, 13 Jul 2021 12:45:12 GMT expires: - '-1' pragma: @@ -6230,7 +5028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '120' x-powered-by: - ASP.NET status: @@ -6250,28 +5048,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M55.3973301S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M45.3368699S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:46:03 GMT + - Tue, 13 Jul 2021 12:45:41 GMT expires: - '-1' pragma: @@ -6288,7 +5085,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '119' x-powered-by: - ASP.NET status: @@ -6308,28 +5105,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M25.7727023S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M15.7640662S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:46:34 GMT + - Tue, 13 Jul 2021 12:46:12 GMT expires: - '-1' pragma: @@ -6346,7 +5142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '118' x-powered-by: - ASP.NET status: @@ -6366,28 +5162,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M56.1725973S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M46.1794284S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:47:05 GMT + - Tue, 13 Jul 2021 12:46:42 GMT expires: - '-1' pragma: @@ -6404,7 +5199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '117' x-powered-by: - ASP.NET status: @@ -6424,28 +5219,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M26.6586009S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M16.5855171S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:47:34 GMT + - Tue, 13 Jul 2021 12:47:13 GMT expires: - '-1' pragma: @@ -6462,7 +5256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '116' x-powered-by: - ASP.NET status: @@ -6482,28 +5276,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M57.0546775S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M47.0951637S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:48:05 GMT + - Tue, 13 Jul 2021 12:47:44 GMT expires: - '-1' pragma: @@ -6520,7 +5313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '115' x-powered-by: - ASP.NET status: @@ -6540,28 +5333,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M27.6453926S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M17.7919721S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:48:35 GMT + - Tue, 13 Jul 2021 12:48:14 GMT expires: - '-1' pragma: @@ -6578,7 +5370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '114' x-powered-by: - ASP.NET status: @@ -6598,28 +5390,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M58.0255756S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M48.3454638S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:49:06 GMT + - Tue, 13 Jul 2021 12:48:45 GMT expires: - '-1' pragma: @@ -6636,7 +5427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '113' x-powered-by: - ASP.NET status: @@ -6656,28 +5447,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M28.4829193S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M18.9793699S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:49:37 GMT + - Tue, 13 Jul 2021 12:49:15 GMT expires: - '-1' pragma: @@ -6694,7 +5484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '112' x-powered-by: - ASP.NET status: @@ -6714,28 +5504,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M58.8588483S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M49.4929748S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:50:08 GMT + - Tue, 13 Jul 2021 12:49:46 GMT expires: - '-1' pragma: @@ -6752,7 +5541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '111' x-powered-by: - ASP.NET status: @@ -6772,28 +5561,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M29.3057816S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M19.9463964S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:50:37 GMT + - Tue, 13 Jul 2021 12:50:17 GMT expires: - '-1' pragma: @@ -6810,7 +5598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '110' x-powered-by: - ASP.NET status: @@ -6830,28 +5618,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M59.7695321S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M50.4362716S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:51:08 GMT + - Tue, 13 Jul 2021 12:50:47 GMT expires: - '-1' pragma: @@ -6868,7 +5655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '109' x-powered-by: - ASP.NET status: @@ -6888,28 +5675,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M30.3910424S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M20.8685304S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:51:39 GMT + - Tue, 13 Jul 2021 12:51:18 GMT expires: - '-1' pragma: @@ -6926,7 +5712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '108' x-powered-by: - ASP.NET status: @@ -6946,19 +5732,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M0.9170902S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M51.3845936S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -6967,7 +5752,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:52:09 GMT + - Tue, 13 Jul 2021 12:51:48 GMT expires: - '-1' pragma: @@ -6984,7 +5769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '107' x-powered-by: - ASP.NET status: @@ -7004,19 +5789,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M31.361335S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M21.8083315S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7025,7 +5809,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:52:40 GMT + - Tue, 13 Jul 2021 12:52:18 GMT expires: - '-1' pragma: @@ -7042,7 +5826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '106' x-powered-by: - ASP.NET status: @@ -7062,19 +5846,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M1.7914512S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M52.1897928S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7083,7 +5866,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:53:10 GMT + - Tue, 13 Jul 2021 12:52:49 GMT expires: - '-1' pragma: @@ -7100,7 +5883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '105' x-powered-by: - ASP.NET status: @@ -7120,28 +5903,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M32.2303023S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M22.6072136S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:53:40 GMT + - Tue, 13 Jul 2021 12:53:19 GMT expires: - '-1' pragma: @@ -7158,7 +5940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '104' x-powered-by: - ASP.NET status: @@ -7178,28 +5960,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M2.7801222S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M53.088196S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:54:11 GMT + - Tue, 13 Jul 2021 12:53:49 GMT expires: - '-1' pragma: @@ -7216,7 +5997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '103' x-powered-by: - ASP.NET status: @@ -7236,28 +6017,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M33.1419571S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M23.5268268S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:54:42 GMT + - Tue, 13 Jul 2021 12:54:20 GMT expires: - '-1' pragma: @@ -7274,7 +6054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '102' x-powered-by: - ASP.NET status: @@ -7294,28 +6074,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M3.5412646S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M57.135208S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:55:12 GMT + - Tue, 13 Jul 2021 12:54:53 GMT expires: - '-1' pragma: @@ -7332,7 +6111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '101' x-powered-by: - ASP.NET status: @@ -7352,19 +6131,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M34.082532S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M27.5512607S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7373,7 +6151,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:55:43 GMT + - Tue, 13 Jul 2021 12:55:24 GMT expires: - '-1' pragma: @@ -7390,7 +6168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '100' x-powered-by: - ASP.NET status: @@ -7410,19 +6188,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M4.4822734S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M57.9701384S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7431,7 +6208,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:56:13 GMT + - Tue, 13 Jul 2021 12:55:55 GMT expires: - '-1' pragma: @@ -7448,7 +6225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '99' x-powered-by: - ASP.NET status: @@ -7468,28 +6245,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M34.9259736S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M28.4127652S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:56:43 GMT + - Tue, 13 Jul 2021 12:56:25 GMT expires: - '-1' pragma: @@ -7506,7 +6282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '98' x-powered-by: - ASP.NET status: @@ -7526,19 +6302,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M5.3273593S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M58.9988586S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7547,7 +6322,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:57:13 GMT + - Tue, 13 Jul 2021 12:56:56 GMT expires: - '-1' pragma: @@ -7564,7 +6339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '97' x-powered-by: - ASP.NET status: @@ -7584,28 +6359,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M35.9855169S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M29.4118611S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:57:44 GMT + - Tue, 13 Jul 2021 12:57:26 GMT expires: - '-1' pragma: @@ -7622,7 +6396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '96' x-powered-by: - ASP.NET status: @@ -7642,28 +6416,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M6.3970255S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M0.0937204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:58:14 GMT + - Tue, 13 Jul 2021 12:57:56 GMT expires: - '-1' pragma: @@ -7680,7 +6453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '95' x-powered-by: - ASP.NET status: @@ -7700,28 +6473,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M36.8376225S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M30.5607581S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 17:58:45 GMT + - Tue, 13 Jul 2021 12:58:27 GMT expires: - '-1' pragma: @@ -7738,7 +6510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '94' x-powered-by: - ASP.NET status: @@ -7758,28 +6530,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M7.3008018S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M1.0136493S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 17:59:15 GMT + - Tue, 13 Jul 2021 12:58:58 GMT expires: - '-1' pragma: @@ -7796,7 +6567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '93' x-powered-by: - ASP.NET status: @@ -7816,19 +6587,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M37.717549S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M31.4534957S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache @@ -7837,7 +6607,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:59:46 GMT + - Tue, 13 Jul 2021 12:59:28 GMT expires: - '-1' pragma: @@ -7854,7 +6624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '92' x-powered-by: - ASP.NET status: @@ -7874,28 +6644,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M8.1260634S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M1.8618958S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:00:16 GMT + - Tue, 13 Jul 2021 12:59:59 GMT expires: - '-1' pragma: @@ -7912,7 +6681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '91' x-powered-by: - ASP.NET status: @@ -7932,28 +6701,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M38.5709831S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M32.3829841S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:00:47 GMT + - Tue, 13 Jul 2021 13:00:29 GMT expires: - '-1' pragma: @@ -7970,7 +6738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '90' x-powered-by: - ASP.NET status: @@ -7990,28 +6758,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M8.9682827S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M2.8420081S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:01:17 GMT + - Tue, 13 Jul 2021 13:00:59 GMT expires: - '-1' pragma: @@ -8028,7 +6795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '89' x-powered-by: - ASP.NET status: @@ -8048,28 +6815,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M39.7071945S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M33.2737994S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:01:48 GMT + - Tue, 13 Jul 2021 13:01:30 GMT expires: - '-1' pragma: @@ -8086,7 +6852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '88' x-powered-by: - ASP.NET status: @@ -8106,28 +6872,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M10.1507058S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M3.7682104S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:02:18 GMT + - Tue, 13 Jul 2021 13:02:00 GMT expires: - '-1' pragma: @@ -8144,7 +6909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '87' x-powered-by: - ASP.NET status: @@ -8164,28 +6929,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M40.5935629S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M34.6002989S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:02:48 GMT + - Tue, 13 Jul 2021 13:02:31 GMT expires: - '-1' pragma: @@ -8202,7 +6966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '86' x-powered-by: - ASP.NET status: @@ -8222,28 +6986,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M11.0619395S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M5.0003961S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:03:19 GMT + - Tue, 13 Jul 2021 13:03:02 GMT expires: - '-1' pragma: @@ -8260,7 +7023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '85' x-powered-by: - ASP.NET status: @@ -8280,28 +7043,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M41.6131627S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M35.4354169S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:03:50 GMT + - Tue, 13 Jul 2021 13:03:32 GMT expires: - '-1' pragma: @@ -8318,7 +7080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '84' x-powered-by: - ASP.NET status: @@ -8338,28 +7100,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M12.0116332S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M5.8779177S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:04:21 GMT + - Tue, 13 Jul 2021 13:04:02 GMT expires: - '-1' pragma: @@ -8376,7 +7137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '83' x-powered-by: - ASP.NET status: @@ -8396,28 +7157,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M42.4812261S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M36.2732144S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:04:50 GMT + - Tue, 13 Jul 2021 13:04:33 GMT expires: - '-1' pragma: @@ -8434,7 +7194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '82' x-powered-by: - ASP.NET status: @@ -8454,28 +7214,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M12.8676145S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M6.9681778S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:05:21 GMT + - Tue, 13 Jul 2021 13:05:03 GMT expires: - '-1' pragma: @@ -8492,7 +7251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '81' x-powered-by: - ASP.NET status: @@ -8512,28 +7271,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M43.3278417S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M37.4311849S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:05:52 GMT + - Tue, 13 Jul 2021 13:05:33 GMT expires: - '-1' pragma: @@ -8550,7 +7308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '80' x-powered-by: - ASP.NET status: @@ -8570,28 +7328,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M13.6988952S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M7.9284326S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:06:23 GMT + - Tue, 13 Jul 2021 13:06:05 GMT expires: - '-1' pragma: @@ -8608,7 +7365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '79' x-powered-by: - ASP.NET status: @@ -8628,28 +7385,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M44.3440472S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M38.4372738S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:06:52 GMT + - Tue, 13 Jul 2021 13:06:35 GMT expires: - '-1' pragma: @@ -8666,7 +7422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '78' x-powered-by: - ASP.NET status: @@ -8686,28 +7442,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M14.8127238S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M8.9208777S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Mon, 21 Jun 2021 18:07:23 GMT + - Tue, 13 Jul 2021 13:07:06 GMT expires: - '-1' pragma: @@ -8724,7 +7479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '77' x-powered-by: - ASP.NET status: @@ -8744,28 +7499,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M45.5707879S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M39.3255349S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:07:54 GMT + - Tue, 13 Jul 2021 13:07:36 GMT expires: - '-1' pragma: @@ -8782,7 +7536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '76' x-powered-by: - ASP.NET status: @@ -8802,28 +7556,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M16.0298068S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M9.77633S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1155' content-type: - application/json date: - - Mon, 21 Jun 2021 18:08:25 GMT + - Tue, 13 Jul 2021 13:08:06 GMT expires: - '-1' pragma: @@ -8840,7 +7593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '75' x-powered-by: - ASP.NET status: @@ -8860,28 +7613,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M46.5876056S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M40.2088302S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:08:55 GMT + - Tue, 13 Jul 2021 13:08:37 GMT expires: - '-1' pragma: @@ -8898,7 +7650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '74' x-powered-by: - ASP.NET status: @@ -8918,28 +7670,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M17.0918092S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M10.6899988S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:09:26 GMT + - Tue, 13 Jul 2021 13:09:07 GMT expires: - '-1' pragma: @@ -8956,7 +7707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '73' x-powered-by: - ASP.NET status: @@ -8976,28 +7727,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M47.5837187S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M41.1601489S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:09:56 GMT + - Tue, 13 Jul 2021 13:09:37 GMT expires: - '-1' pragma: @@ -9014,7 +7764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '72' x-powered-by: - ASP.NET status: @@ -9034,28 +7784,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M18.1370504S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M11.5575706S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:10:26 GMT + - Tue, 13 Jul 2021 13:10:08 GMT expires: - '-1' pragma: @@ -9072,7 +7821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '71' x-powered-by: - ASP.NET status: @@ -9092,28 +7841,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M48.6015982S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M42.0193617S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:10:57 GMT + - Tue, 13 Jul 2021 13:10:39 GMT expires: - '-1' pragma: @@ -9130,7 +7878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '70' x-powered-by: - ASP.NET status: @@ -9150,28 +7898,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M19.0761409S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M12.4983014S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:11:28 GMT + - Tue, 13 Jul 2021 13:11:09 GMT expires: - '-1' pragma: @@ -9188,7 +7935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '69' x-powered-by: - ASP.NET status: @@ -9208,28 +7955,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M49.4991676S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M43.1264051S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:11:58 GMT + - Tue, 13 Jul 2021 13:11:39 GMT expires: - '-1' pragma: @@ -9246,7 +7992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '68' x-powered-by: - ASP.NET status: @@ -9266,28 +8012,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M19.9435937S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M13.5607436S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:12:28 GMT + - Tue, 13 Jul 2021 13:12:10 GMT expires: - '-1' pragma: @@ -9304,7 +8049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '67' x-powered-by: - ASP.NET status: @@ -9324,28 +8069,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M51.8977458S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M44.1361405S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-21T17:22:08.8269567Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-07-13T12:31:57.111251Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Mon, 21 Jun 2021 18:13:01 GMT + - Tue, 13 Jul 2021 13:12:40 GMT expires: - '-1' pragma: @@ -9362,7 +8106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '66' x-powered-by: - ASP.NET status: @@ -9382,28 +8126,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f0bcfc5-cb80-4b01-b291-f27d62d13af0","name":"4f0bcfc5-cb80-4b01-b291-f27d62d13af0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M11.8496496S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1dcfa627-66f8-4d26-a027-f8e4e541ad1b","name":"1dcfa627-66f8-4d26-a027-f8e4e541ad1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M12.5991996S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery - Point Expiry Time in UTC":"7/21/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-21T17:22:08.8269567Z","endTime":"2021-06-21T18:13:20.6766063Z","activityId":"345675c7-d2b5-11eb-b87a-c8f750f92764"}}' + Point Expiry Time in UTC":"8/12/2021 12:00:00 AM","Backup Size":"11410 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-07-13T12:31:57.111251Z","endTime":"2021-07-13T13:13:09.7104506Z","activityId":"4e451428-e3d6-11eb-96aa-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1223' + - '1222' content-type: - application/json date: - - Mon, 21 Jun 2021 18:13:30 GMT + - Tue, 13 Jul 2021 13:13:11 GMT expires: - '-1' pragma: @@ -9420,7 +8163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '65' x-powered-by: - ASP.NET status: @@ -9440,9 +8183,8 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9450,16 +8192,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T17:22:08.8269567Z","protectedItemDataId":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T17:22:12.2763768Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:31:57.111251Z","protectedItemDataId":"17593773527476","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-07-13T12:32:00.9899193Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2362' content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:01 GMT + - Tue, 13 Jul 2021 13:13:42 GMT expires: - '-1' pragma: @@ -9495,16 +8237,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/71757970591032","name":"71757970591032","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T17:22:12.2763768Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/77466073558468","name":"77466073558468","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T12:32:00.9899193Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}]}' @@ -9516,7 +8257,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:02 GMT + - Tue, 13 Jul 2021 13:13:42 GMT expires: - '-1' pragma: @@ -9552,9 +8293,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9562,16 +8302,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T17:22:08.8269567Z","protectedItemDataId":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T17:22:12.2763768Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:31:57.111251Z","protectedItemDataId":"17593773527476","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-07-13T12:32:00.9899193Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2362' content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:02 GMT + - Tue, 13 Jul 2021 13:13:43 GMT expires: - '-1' pragma: @@ -9587,7 +8327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -9607,9 +8347,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9625,7 +8364,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:03 GMT + - Tue, 13 Jul 2021 13:13:44 GMT expires: - '-1' pragma: @@ -9641,7 +8380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -9661,9 +8400,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9671,16 +8409,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-21T17:22:08.8269567Z","protectedItemDataId":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T17:22:12.2763768Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:31:57.111251Z","protectedItemDataId":"17593773527476","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-07-13T12:32:00.9899193Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2362' content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:03 GMT + - Tue, 13 Jul 2021 13:13:44 GMT expires: - '-1' pragma: @@ -9696,7 +8434,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -9716,9 +8454,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -9734,7 +8471,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:03 GMT + - Tue, 13 Jul 2021 13:13:45 GMT expires: - '-1' pragma: @@ -9770,16 +8507,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: 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/71757970591032?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/77466073558468?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/71757970591032","name":"71757970591032","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-21T17:22:12.2763768Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + 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/77466073558468","name":"77466073558468","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-07-13T12:32:00.9899193Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -9791,7 +8527,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:05 GMT + - Tue, 13 Jul 2021 13:13:45 GMT expires: - '-1' pragma: @@ -9827,13 +8563,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T17%3A19%3A46.7039959Z''\"","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-07-13T12%3A29%3A29.3054937Z''\"","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 @@ -9842,7 +8577,56 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:05 GMT + - Tue, 13 Jul 2021 13:13: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 + 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupEncryptionConfigs/backupResourceEncryptionConfig","name":"backupResourceEncryptionConfig","type":"Microsoft.RecoveryServices/vaults/backupEncryptionConfigs","properties":{"useSystemAssignedIdentity":true,"encryptionAtRestType":"MicrosoftManaged","lastUpdateStatus":"NotEnabled","infrastructureEncryptionState":"Disabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:13:46 GMT expires: - '-1' pragma: @@ -9857,6 +8641,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 @@ -9874,8 +8662,7 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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: @@ -9891,7 +8678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 18:14:05 GMT + - Tue, 13 Jul 2021 13:13:46 GMT expires: - '-1' pragma: @@ -9919,13 +8706,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) 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":"2021-06-21T17:20:55.7991822Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-21T17:20:55.7054663Z","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: '{"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-07-13T12:30:38.9006762Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-13T12:30:38.8069252Z","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 @@ -9934,7 +8720,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:05 GMT + - Tue, 13 Jul 2021 13:13:46 GMT expires: - '-1' pragma: @@ -9954,7 +8740,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "71757970591032", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "77466073558468", "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}}' @@ -9974,29 +8760,28 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.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/71757970591032/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints/77466073558468/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 18:14:06 GMT + - Tue, 13 Jul 2021 13:13: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -10024,16 +8809,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10042,7 +8826,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:07 GMT + - Tue, 13 Jul 2021 13:13:48 GMT expires: - '-1' pragma: @@ -10058,7 +8842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -10078,16 +8862,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","status":"Succeeded","startTime":"2021-06-21T18:14:07.2508324Z","endTime":"2021-06-21T18:14:07.2508324Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"99ed9854-a430-4428-987d-85c391854cb4"}}' + string: '{"id":"a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","status":"Succeeded","startTime":"2021-07-13T13:13:48.3436988Z","endTime":"2021-07-13T13:13:48.3436988Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a9987264-0441-4c66-b0ac-c46b9a481d1b"}}' headers: cache-control: - no-cache @@ -10096,7 +8879,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:08 GMT + - Tue, 13 Jul 2021 13:13:49 GMT expires: - '-1' pragma: @@ -10112,7 +8895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -10132,28 +8915,27 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0187219S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.8877322S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1198' + - '1199' content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:09 GMT + - Tue, 13 Jul 2021 13:13:50 GMT expires: - '-1' pragma: @@ -10170,7 +8952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -10190,19 +8972,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.5465684S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.780971S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10211,7 +8992,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:10 GMT + - Tue, 13 Jul 2021 13:13:51 GMT expires: - '-1' pragma: @@ -10248,28 +9029,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.8792159S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.2315794S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1198' + - '1199' content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:10 GMT + - Tue, 13 Jul 2021 13:13:51 GMT expires: - '-1' pragma: @@ -10306,28 +9086,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.3069661S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.6357184S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1199' + - '1200' content-type: - application/json date: - - Mon, 21 Jun 2021 18:14:41 GMT + - Tue, 13 Jul 2021 13:14:21 GMT expires: - '-1' pragma: @@ -10364,28 +9143,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.7552379S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.0694932S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 18:15:11 GMT + - Tue, 13 Jul 2021 13:14:52 GMT expires: - '-1' pragma: @@ -10422,28 +9200,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.2285153S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.6589975S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:15:41 GMT + - Tue, 13 Jul 2021 13:15:22 GMT expires: - '-1' pragma: @@ -10480,28 +9257,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M4.6584935S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.0523813S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 18:16:11 GMT + - Tue, 13 Jul 2021 13:15:53 GMT expires: - '-1' pragma: @@ -10538,28 +9314,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.0436234S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.4768598S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:16:42 GMT + - Tue, 13 Jul 2021 13:16:24 GMT expires: - '-1' pragma: @@ -10596,28 +9371,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.4147745S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.0092794S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 18:17:13 GMT + - Tue, 13 Jul 2021 13:16:54 GMT expires: - '-1' pragma: @@ -10654,28 +9428,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M35.9134511S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.4657288S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:17:42 GMT + - Tue, 13 Jul 2021 13:17:25 GMT expires: - '-1' pragma: @@ -10712,28 +9485,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M6.3769975S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M6.8903524S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 18:18:13 GMT + - Tue, 13 Jul 2021 13:17:54 GMT expires: - '-1' pragma: @@ -10770,28 +9542,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.0220448S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.3608332S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:18:44 GMT + - Tue, 13 Jul 2021 13:18:26 GMT expires: - '-1' pragma: @@ -10828,28 +9599,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M7.4365842S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M8.1502012S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 18:19:14 GMT + - Tue, 13 Jul 2021 13:18:56 GMT expires: - '-1' pragma: @@ -10886,28 +9656,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M37.8588365S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M38.5424915S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:19:45 GMT + - Tue, 13 Jul 2021 13:19:26 GMT expires: - '-1' pragma: @@ -10944,19 +9713,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M8.5624215S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M9.033068S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -10965,7 +9733,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:20:16 GMT + - Tue, 13 Jul 2021 13:19:57 GMT expires: - '-1' pragma: @@ -11002,28 +9770,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M39.0688709S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M39.4773962S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:20:46 GMT + - Tue, 13 Jul 2021 13:20:27 GMT expires: - '-1' pragma: @@ -11060,28 +9827,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M9.5034869S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M9.9140288S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1201' content-type: - application/json date: - - Mon, 21 Jun 2021 18:21:17 GMT + - Tue, 13 Jul 2021 13:20:57 GMT expires: - '-1' pragma: @@ -11118,28 +9884,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M39.9996035S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M40.3032935S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:21:47 GMT + - Tue, 13 Jul 2021 13:21:29 GMT expires: - '-1' pragma: @@ -11176,28 +9941,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M10.490144S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M10.7575733S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:22:17 GMT + - Tue, 13 Jul 2021 13:21:59 GMT expires: - '-1' pragma: @@ -11234,28 +9998,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M40.9520139S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M41.2197286S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:22:48 GMT + - Tue, 13 Jul 2021 13:22:29 GMT expires: - '-1' pragma: @@ -11292,28 +10055,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M11.4045569S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M11.6195149S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:23:18 GMT + - Tue, 13 Jul 2021 13:23:00 GMT expires: - '-1' pragma: @@ -11350,28 +10112,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M41.950307S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M42.4700357S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1202' content-type: - application/json date: - - Mon, 21 Jun 2021 18:23:49 GMT + - Tue, 13 Jul 2021 13:23:30 GMT expires: - '-1' pragma: @@ -11408,19 +10169,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M12.4241768S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M13.973057S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -11429,7 +10189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:24:20 GMT + - Tue, 13 Jul 2021 13:24:01 GMT expires: - '-1' pragma: @@ -11466,28 +10226,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M42.9577959S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M44.4683742S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1203' content-type: - application/json date: - - Mon, 21 Jun 2021 18:24:49 GMT + - Tue, 13 Jul 2021 13:24:33 GMT expires: - '-1' pragma: @@ -11524,28 +10283,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M13.4609027S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M14.9081952S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1203' content-type: - application/json date: - - Mon, 21 Jun 2021 18:25:20 GMT + - Tue, 13 Jul 2021 13:25:03 GMT expires: - '-1' pragma: @@ -11582,28 +10340,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M43.8908053S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M45.3199618S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1203' content-type: - application/json date: - - Mon, 21 Jun 2021 18:25:51 GMT + - Tue, 13 Jul 2021 13:25:33 GMT expires: - '-1' pragma: @@ -11640,29 +10397,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M14.34876S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M15.8048782S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1304' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:26:22 GMT + - Tue, 13 Jul 2021 13:26:04 GMT expires: - '-1' pragma: @@ -11699,29 +10455,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M44.8624313S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M46.3939202S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:26:51 GMT + - Tue, 13 Jul 2021 13:26:35 GMT expires: - '-1' pragma: @@ -11758,29 +10513,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M15.3019686S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M17.7194842S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:27:22 GMT + - Tue, 13 Jul 2021 13:27:05 GMT expires: - '-1' pragma: @@ -11817,29 +10571,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M46.0443968S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M48.1387755S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:27:53 GMT + - Tue, 13 Jul 2021 13:27:36 GMT expires: - '-1' pragma: @@ -11876,29 +10629,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M16.6185287S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M18.8794209S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:28:24 GMT + - Tue, 13 Jul 2021 13:28:07 GMT expires: - '-1' pragma: @@ -11935,29 +10687,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M47.0981758S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M49.4033969S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:28:54 GMT + - Tue, 13 Jul 2021 13:28:38 GMT expires: - '-1' pragma: @@ -11994,29 +10745,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M17.5319336S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M20.0088855S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:29:25 GMT + - Tue, 13 Jul 2021 13:29:08 GMT expires: - '-1' pragma: @@ -12053,29 +10803,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M48.1122978S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M50.4971287S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:29:55 GMT + - Tue, 13 Jul 2021 13:29:38 GMT expires: - '-1' pragma: @@ -12112,20 +10861,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M18.8109355S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M20.989421S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12134,7 +10882,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:30:25 GMT + - Tue, 13 Jul 2021 13:30:08 GMT expires: - '-1' pragma: @@ -12171,29 +10919,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M49.2376071S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M51.5461569S","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 ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M3.2394952S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.4091725S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1306' + - '1307' content-type: - application/json date: - - Mon, 21 Jun 2021 18:30:56 GMT + - Tue, 13 Jul 2021 13:30:40 GMT expires: - '-1' pragma: @@ -12230,20 +10977,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M19.6565378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M22.1621305S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12252,7 +10998,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:31:26 GMT + - Tue, 13 Jul 2021 13:31:10 GMT expires: - '-1' pragma: @@ -12289,20 +11035,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M50.0656375S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M52.5320511S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12311,7 +11056,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:31:57 GMT + - Tue, 13 Jul 2021 13:31:40 GMT expires: - '-1' pragma: @@ -12348,20 +11093,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M20.4904747S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M23.0385566S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12370,7 +11114,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:32:27 GMT + - Tue, 13 Jul 2021 13:32:10 GMT expires: - '-1' pragma: @@ -12407,20 +11151,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M51.0075071S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M53.6137458S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12429,7 +11172,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:32:58 GMT + - Tue, 13 Jul 2021 13:32:42 GMT expires: - '-1' pragma: @@ -12466,20 +11209,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M21.4708371S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M24.2937917S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12488,7 +11230,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:33:29 GMT + - Tue, 13 Jul 2021 13:33:12 GMT expires: - '-1' pragma: @@ -12525,29 +11267,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M51.94788S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M54.808167S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1305' + - '1306' content-type: - application/json date: - - Mon, 21 Jun 2021 18:33:59 GMT + - Tue, 13 Jul 2021 13:33:42 GMT expires: - '-1' pragma: @@ -12584,20 +11325,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M22.4386804S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M25.3764985S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12606,7 +11346,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:34:30 GMT + - Tue, 13 Jul 2021 13:34:14 GMT expires: - '-1' pragma: @@ -12643,20 +11383,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M52.8311878S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M55.8244495S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12665,7 +11404,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:34:59 GMT + - Tue, 13 Jul 2021 13:34:45 GMT expires: - '-1' pragma: @@ -12702,20 +11441,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M23.3560892S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M27.2277029S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12724,7 +11462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:35:30 GMT + - Tue, 13 Jul 2021 13:35:15 GMT expires: - '-1' pragma: @@ -12761,20 +11499,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M54.0468038S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M57.6907052S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M3.9525075S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT56.3236704S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -12783,7 +11520,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:36:01 GMT + - Tue, 13 Jul 2021 13:35:46 GMT expires: - '-1' pragma: @@ -12820,29 +11557,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M24.4891107S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M28.0975828S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1308' + - '1309' content-type: - application/json date: - - Mon, 21 Jun 2021 18:36:32 GMT + - Tue, 13 Jul 2021 13:36:15 GMT expires: - '-1' pragma: @@ -12879,29 +11615,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M54.8978264S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M59.1499941S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1308' + - '1309' content-type: - application/json date: - - Mon, 21 Jun 2021 18:37:02 GMT + - Tue, 13 Jul 2021 13:36:47 GMT expires: - '-1' pragma: @@ -12938,29 +11673,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M25.6358208S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M29.6467629S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1308' + - '1309' content-type: - application/json date: - - Mon, 21 Jun 2021 18:37:32 GMT + - Tue, 13 Jul 2021 13:37:17 GMT expires: - '-1' pragma: @@ -12997,29 +11731,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M56.049691S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M0.1144097S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1307' + - '1308' content-type: - application/json date: - - Mon, 21 Jun 2021 18:38:03 GMT + - Tue, 13 Jul 2021 13:37:48 GMT expires: - '-1' pragma: @@ -13056,29 +11789,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M26.4129111S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M30.9153179S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1308' + - '1309' content-type: - application/json date: - - Mon, 21 Jun 2021 18:38:34 GMT + - Tue, 13 Jul 2021 13:38:19 GMT expires: - '-1' pragma: @@ -13115,20 +11847,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M56.8121722S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M1.3676338S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -13137,7 +11868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:39:04 GMT + - Tue, 13 Jul 2021 13:38:49 GMT expires: - '-1' pragma: @@ -13174,29 +11905,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M28.0653916S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M31.8742216S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1308' + - '1309' content-type: - application/json date: - - Mon, 21 Jun 2021 18:39:35 GMT + - Tue, 13 Jul 2021 13:39:20 GMT expires: - '-1' pragma: @@ -13233,20 +11963,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M58.7130354S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M2.3297472S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -13255,7 +11984,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:40:05 GMT + - Tue, 13 Jul 2021 13:39:50 GMT expires: - '-1' pragma: @@ -13292,29 +12021,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M29.1370895S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M32.8062838S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1308' + - '1309' content-type: - application/json date: - - Mon, 21 Jun 2021 18:40:36 GMT + - Tue, 13 Jul 2021 13:40:20 GMT expires: - '-1' pragma: @@ -13351,20 +12079,19 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M59.5706284S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"119.54 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M3.2802872S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.39 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery - point time ":"6/21/2021 5:22:12 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M22.7110144S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-06-21T18:14:07.2508324Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT1M12.8491797S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-07-13T13:13:48.3436988Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache @@ -13373,7 +12100,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:41:06 GMT + - Tue, 13 Jul 2021 13:40:51 GMT expires: - '-1' pragma: @@ -13410,32 +12137,31 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/99ed9854-a430-4428-987d-85c391854cb4","name":"99ed9854-a430-4428-987d-85c391854cb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M5.8686463S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9987264-0441-4c66-b0ac-c46b9a481d1b","name":"a9987264-0441-4c66-b0ac-c46b9a481d1b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M6.8963527S","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 ":"6/21/2021 5:22:12 PM","Config Blob Name":"config-clitestvma4xll-99ed9854-a430-4428-987d-85c391854cb4.json","Config - Blob Container Name":"clitestvma4xll-da9dad1c5ab641b896a321a9fc07b527","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvma4xll-da9dad1c5ab641b896a321a9fc07b527/config-clitestvma4xll-99ed9854-a430-4428-987d-85c391854cb4.json","Template - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvma4xll-da9dad1c5ab641b896a321a9fc07b527/azuredeploy99ed9854-a430-4428-987d-85c391854cb4.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-06-21T18:14:07.2508324Z","endTime":"2021-06-21T18:41:13.1194787Z","activityId":"74e9cf2e-d2bc-11eb-b0fc-c8f750f92764"}}' + point time ":"7/13/2021 12:32:00 PM","Config Blob Name":"config-clitestvm3wvjx-a9987264-0441-4c66-b0ac-c46b9a481d1b.json","Config + Blob Container Name":"clitestvm3wvjx-4ae7e03c4e4d4fd2a0d6a70d16e23481","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvm3wvjx-4ae7e03c4e4d4fd2a0d6a70d16e23481/config-clitestvm3wvjx-a9987264-0441-4c66-b0ac-c46b9a481d1b.json","Template + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvm3wvjx-4ae7e03c4e4d4fd2a0d6a70d16e23481/azuredeploya9987264-0441-4c66-b0ac-c46b9a481d1b.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-07-13T13:13:48.3436988Z","endTime":"2021-07-13T13:40:55.2400515Z","activityId":"2492e668-e3dc-11eb-a455-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '1862' + - '1863' content-type: - application/json date: - - Mon, 21 Jun 2021 18:41:36 GMT + - Tue, 13 Jul 2021 13:41:21 GMT expires: - '-1' pragma: @@ -13472,9 +12198,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -13482,16 +12207,16 @@ interactions: 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":"2021-06-21T17:22:08.8269567Z","protectedItemDataId":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T17:22:12.2763768Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:31:57.111251Z","protectedItemDataId":"17593773527476","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-07-13T12:32:00.9899193Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2515' + - '2514' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:08 GMT + - Tue, 13 Jul 2021 13:41:52 GMT expires: - '-1' pragma: @@ -13533,9 +12258,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -13545,17 +12269,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 18:42:08 GMT + - Tue, 13 Jul 2021 13:41: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -13583,16 +12307,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13601,7 +12324,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:09 GMT + - Tue, 13 Jul 2021 13:41:53 GMT expires: - '-1' pragma: @@ -13637,16 +12360,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13655,7 +12377,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:10 GMT + - Tue, 13 Jul 2021 13:41:55 GMT expires: - '-1' pragma: @@ -13691,16 +12413,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13709,7 +12430,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:11 GMT + - Tue, 13 Jul 2021 13:41:56 GMT expires: - '-1' pragma: @@ -13745,16 +12466,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13763,7 +12483,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:13 GMT + - Tue, 13 Jul 2021 13:41:57 GMT expires: - '-1' pragma: @@ -13799,16 +12519,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13817,7 +12536,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:14 GMT + - Tue, 13 Jul 2021 13:41:58 GMT expires: - '-1' pragma: @@ -13853,16 +12572,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13871,7 +12589,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:15 GMT + - Tue, 13 Jul 2021 13:42:00 GMT expires: - '-1' pragma: @@ -13907,16 +12625,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13925,7 +12642,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:16 GMT + - Tue, 13 Jul 2021 13:42:01 GMT expires: - '-1' pragma: @@ -13961,16 +12678,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13979,7 +12695,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:17 GMT + - Tue, 13 Jul 2021 13:42:02 GMT expires: - '-1' pragma: @@ -14015,16 +12731,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14033,7 +12748,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:19 GMT + - Tue, 13 Jul 2021 13:42:03 GMT expires: - '-1' pragma: @@ -14069,16 +12784,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"InProgress","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"InProgress","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14087,7 +12801,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:20 GMT + - Tue, 13 Jul 2021 13:42:04 GMT expires: - '-1' pragma: @@ -14123,16 +12837,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2694761f-276c-4fc5-9d29-03c56bcaa192?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4c314940-43eb-4f7d-abd6-fe0de68e89af?api-version=2021-01-01 response: body: - string: '{"id":"2694761f-276c-4fc5-9d29-03c56bcaa192","name":"2694761f-276c-4fc5-9d29-03c56bcaa192","status":"Succeeded","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"2021-06-21T18:42:08.9598474Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3b0fe4a8-3117-484d-bb07-44061ed1a764"}}' + string: '{"id":"4c314940-43eb-4f7d-abd6-fe0de68e89af","name":"4c314940-43eb-4f7d-abd6-fe0de68e89af","status":"Succeeded","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"2021-07-13T13:41:53.4479423Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4f69cf4f-cd87-46c9-91c5-dc891ec71cc0"}}' headers: cache-control: - no-cache @@ -14141,7 +12854,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:21 GMT + - Tue, 13 Jul 2021 13:42:06 GMT expires: - '-1' pragma: @@ -14177,17 +12890,16 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b0fe4a8-3117-484d-bb07-44061ed1a764?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f69cf4f-cd87-46c9-91c5-dc891ec71cc0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b0fe4a8-3117-484d-bb07-44061ed1a764","name":"3b0fe4a8-3117-484d-bb07-44061ed1a764","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.4979684S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2021-06-21T18:42:08.9598474Z","endTime":"2021-06-21T18:42:20.4578158Z","activityId":"616b71c6-d2c0-11eb-8800-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4f69cf4f-cd87-46c9-91c5-dc891ec71cc0","name":"4f69cf4f-cd87-46c9-91c5-dc891ec71cc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.8161605S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2021-07-13T13:41:53.4479423Z","endTime":"2021-07-13T13:42:05.2641028Z","activityId":"137e855c-e3e0-11eb-a24c-00155ddc6812"}}' headers: cache-control: - no-cache @@ -14196,7 +12908,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:21 GMT + - Tue, 13 Jul 2021 13:42:06 GMT expires: - '-1' pragma: @@ -14213,7 +12925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '83' x-powered-by: - ASP.NET status: @@ -14233,9 +12945,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -14243,16 +12954,16 @@ interactions: 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":"2021-06-21T17:22:08.8269567Z","protectedItemDataId":"35185475114435","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-06-21T17:22:12.2763768Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:31:57.111251Z","protectedItemDataId":"17593773527476","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-07-13T12:32:00.9899193Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2270' + - '2269' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:22 GMT + - Tue, 13 Jul 2021 13:42:07 GMT expires: - '-1' pragma: @@ -14288,16 +12999,15 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-22T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-22T03: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-07-13T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-13T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -14306,7 +13016,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:23 GMT + - Tue, 13 Jul 2021 13:42:07 GMT expires: - '-1' pragma: @@ -14348,9 +13058,8 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -14360,17 +13069,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 18:42:23 GMT + - Tue, 13 Jul 2021 13:42: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/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -14398,25 +13107,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:24 GMT + - Tue, 13 Jul 2021 13:42:09 GMT expires: - '-1' pragma: @@ -14452,25 +13160,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:25 GMT + - Tue, 13 Jul 2021 13:42:10 GMT expires: - '-1' pragma: @@ -14506,25 +13213,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:26 GMT + - Tue, 13 Jul 2021 13:42:11 GMT expires: - '-1' pragma: @@ -14560,25 +13266,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:28 GMT + - Tue, 13 Jul 2021 13:42:12 GMT expires: - '-1' pragma: @@ -14614,25 +13319,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:29 GMT + - Tue, 13 Jul 2021 13:42:13 GMT expires: - '-1' pragma: @@ -14668,25 +13372,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:30 GMT + - Tue, 13 Jul 2021 13:42:15 GMT expires: - '-1' pragma: @@ -14722,25 +13425,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:31 GMT + - Tue, 13 Jul 2021 13:42:16 GMT expires: - '-1' pragma: @@ -14776,25 +13478,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:32 GMT + - Tue, 13 Jul 2021 13:42:17 GMT expires: - '-1' pragma: @@ -14830,25 +13531,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"InProgress","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:34 GMT + - Tue, 13 Jul 2021 13:42:18 GMT expires: - '-1' pragma: @@ -14884,25 +13584,24 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb5a1e2-1724-4ecc-b23a-2435c28d6a73?api-version=2021-01-01 response: body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"InProgress","startTime":"2021-06-21T18:42:24.041695Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","name":"2cb5a1e2-1724-4ecc-b23a-2435c28d6a73","status":"Succeeded","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"2021-07-13T13:42:08.8092353Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"22a0cd42-fd40-465d-b43a-3407d1312c96"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:35 GMT + - Tue, 13 Jul 2021 13:42:20 GMT expires: - '-1' pragma: @@ -14938,80 +13637,25 @@ interactions: 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9268320b-0d55-4a73-9fe8-11747d955d22?api-version=2021-01-01 - response: - body: - string: '{"id":"9268320b-0d55-4a73-9fe8-11747d955d22","name":"9268320b-0d55-4a73-9fe8-11747d955d22","status":"Succeeded","startTime":"2021-06-21T18:42:24.041695Z","endTime":"2021-06-21T18:42:24.041695Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bc8d63b2-be9c-4e5d-8fda-3dd9569ff32e"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 18:42: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: - - '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 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.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bc8d63b2-be9c-4e5d-8fda-3dd9569ff32e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22a0cd42-fd40-465d-b43a-3407d1312c96?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bc8d63b2-be9c-4e5d-8fda-3dd9569ff32e","name":"bc8d63b2-be9c-4e5d-8fda-3dd9569ff32e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12.0358326S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T18:42:24.041695Z","endTime":"2021-06-21T18:42:36.0775276Z","activityId":"6a3a05b2-d2c0-11eb-87fa-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/22a0cd42-fd40-465d-b43a-3407d1312c96","name":"22a0cd42-fd40-465d-b43a-3407d1312c96","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.8472329S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T13:42:08.8092353Z","endTime":"2021-07-13T13:42:19.6564682Z","activityId":"1c3436f8-e3e0-11eb-9543-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '967' + - '968' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:36 GMT + - Tue, 13 Jul 2021 13:42:20 GMT expires: - '-1' pragma: @@ -15049,9 +13693,8 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -15059,16 +13702,16 @@ interactions: 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":"2021-06-21T17:22:08.8269567Z","protectedItemDataId":"35185475114435","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-21T17:22:12.2763768Z","isArchiveEnabled":false}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-07-13T12:31:57.111251Z","protectedItemDataId":"17593773527476","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-07-13T12:32:00.9899193Z","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '2515' + - '2514' content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:37 GMT + - Tue, 13 Jul 2021 13:42:21 GMT expires: - '-1' pragma: @@ -15084,7 +13727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -15107,9 +13750,8 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -15119,17 +13761,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 18:42:37 GMT + - Tue, 13 Jul 2021 13:42:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -15158,16 +13800,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15176,7 +13817,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:38 GMT + - Tue, 13 Jul 2021 13:42:22 GMT expires: - '-1' pragma: @@ -15213,16 +13854,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15231,7 +13871,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:39 GMT + - Tue, 13 Jul 2021 13:42:23 GMT expires: - '-1' pragma: @@ -15268,16 +13908,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15286,7 +13925,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:41 GMT + - Tue, 13 Jul 2021 13:42:24 GMT expires: - '-1' pragma: @@ -15323,16 +13962,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15341,7 +13979,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:42 GMT + - Tue, 13 Jul 2021 13:42:25 GMT expires: - '-1' pragma: @@ -15378,16 +14016,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15396,7 +14033,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:43 GMT + - Tue, 13 Jul 2021 13:42:27 GMT expires: - '-1' pragma: @@ -15433,16 +14070,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15451,7 +14087,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:45 GMT + - Tue, 13 Jul 2021 13:42:28 GMT expires: - '-1' pragma: @@ -15488,16 +14124,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15506,7 +14141,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:46 GMT + - Tue, 13 Jul 2021 13:42:30 GMT expires: - '-1' pragma: @@ -15543,16 +14178,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15561,7 +14195,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:47 GMT + - Tue, 13 Jul 2021 13:42:31 GMT expires: - '-1' pragma: @@ -15598,16 +14232,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15616,7 +14249,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:48 GMT + - Tue, 13 Jul 2021 13:42:33 GMT expires: - '-1' pragma: @@ -15653,16 +14286,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15671,7 +14303,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:50 GMT + - Tue, 13 Jul 2021 13:42:34 GMT expires: - '-1' pragma: @@ -15708,16 +14340,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15726,7 +14357,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:51 GMT + - Tue, 13 Jul 2021 13:42:35 GMT expires: - '-1' pragma: @@ -15763,16 +14394,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15781,7 +14411,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:52 GMT + - Tue, 13 Jul 2021 13:42:36 GMT expires: - '-1' pragma: @@ -15818,16 +14448,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15836,7 +14465,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:53 GMT + - Tue, 13 Jul 2021 13:42:37 GMT expires: - '-1' pragma: @@ -15873,16 +14502,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15891,7 +14519,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:55 GMT + - Tue, 13 Jul 2021 13:42:39 GMT expires: - '-1' pragma: @@ -15928,16 +14556,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15946,7 +14573,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:56 GMT + - Tue, 13 Jul 2021 13:42:40 GMT expires: - '-1' pragma: @@ -15983,16 +14610,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16001,7 +14627,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:57 GMT + - Tue, 13 Jul 2021 13:42:41 GMT expires: - '-1' pragma: @@ -16038,16 +14664,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16056,7 +14681,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:58 GMT + - Tue, 13 Jul 2021 13:42:43 GMT expires: - '-1' pragma: @@ -16093,16 +14718,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16111,7 +14735,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:42:59 GMT + - Tue, 13 Jul 2021 13:42:44 GMT expires: - '-1' pragma: @@ -16148,16 +14772,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16166,7 +14789,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:01 GMT + - Tue, 13 Jul 2021 13:42:45 GMT expires: - '-1' pragma: @@ -16203,16 +14826,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16221,7 +14843,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:02 GMT + - Tue, 13 Jul 2021 13:42:46 GMT expires: - '-1' pragma: @@ -16258,16 +14880,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16276,7 +14897,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:03 GMT + - Tue, 13 Jul 2021 13:42:47 GMT expires: - '-1' pragma: @@ -16313,16 +14934,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16331,7 +14951,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:04 GMT + - Tue, 13 Jul 2021 13:42:49 GMT expires: - '-1' pragma: @@ -16368,16 +14988,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16386,7 +15005,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:05 GMT + - Tue, 13 Jul 2021 13:42:50 GMT expires: - '-1' pragma: @@ -16423,16 +15042,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16441,7 +15059,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:07 GMT + - Tue, 13 Jul 2021 13:42:51 GMT expires: - '-1' pragma: @@ -16478,16 +15096,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16496,7 +15113,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:08 GMT + - Tue, 13 Jul 2021 13:42:52 GMT expires: - '-1' pragma: @@ -16533,16 +15150,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16551,7 +15167,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:09 GMT + - Tue, 13 Jul 2021 13:42:54 GMT expires: - '-1' pragma: @@ -16588,16 +15204,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16606,7 +15221,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:10 GMT + - Tue, 13 Jul 2021 13:42:55 GMT expires: - '-1' pragma: @@ -16643,16 +15258,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16661,7 +15275,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:11 GMT + - Tue, 13 Jul 2021 13:42:56 GMT expires: - '-1' pragma: @@ -16698,16 +15312,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16716,7 +15329,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:13 GMT + - Tue, 13 Jul 2021 13:42:57 GMT expires: - '-1' pragma: @@ -16753,16 +15366,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16771,7 +15383,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:14 GMT + - Tue, 13 Jul 2021 13:42:58 GMT expires: - '-1' pragma: @@ -16808,16 +15420,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16826,7 +15437,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:15 GMT + - Tue, 13 Jul 2021 13:43:00 GMT expires: - '-1' pragma: @@ -16863,16 +15474,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16881,7 +15491,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:16 GMT + - Tue, 13 Jul 2021 13:43:01 GMT expires: - '-1' pragma: @@ -16918,16 +15528,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16936,7 +15545,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:17 GMT + - Tue, 13 Jul 2021 13:43:02 GMT expires: - '-1' pragma: @@ -16973,16 +15582,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16991,7 +15599,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:19 GMT + - Tue, 13 Jul 2021 13:43:03 GMT expires: - '-1' pragma: @@ -17028,16 +15636,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17046,7 +15653,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:22 GMT + - Tue, 13 Jul 2021 13:43:05 GMT expires: - '-1' pragma: @@ -17083,16 +15690,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17101,7 +15707,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:23 GMT + - Tue, 13 Jul 2021 13:43:06 GMT expires: - '-1' pragma: @@ -17138,16 +15744,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17156,7 +15761,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:25 GMT + - Tue, 13 Jul 2021 13:43:07 GMT expires: - '-1' pragma: @@ -17193,16 +15798,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17211,7 +15815,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:26 GMT + - Tue, 13 Jul 2021 13:43:08 GMT expires: - '-1' pragma: @@ -17248,16 +15852,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17266,7 +15869,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:27 GMT + - Tue, 13 Jul 2021 13:43:10 GMT expires: - '-1' pragma: @@ -17303,16 +15906,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17321,7 +15923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:28 GMT + - Tue, 13 Jul 2021 13:43:11 GMT expires: - '-1' pragma: @@ -17358,16 +15960,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17376,7 +15977,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:30 GMT + - Tue, 13 Jul 2021 13:43:12 GMT expires: - '-1' pragma: @@ -17413,16 +16014,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17431,7 +16031,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:31 GMT + - Tue, 13 Jul 2021 13:43:13 GMT expires: - '-1' pragma: @@ -17468,16 +16068,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17486,7 +16085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:32 GMT + - Tue, 13 Jul 2021 13:43:14 GMT expires: - '-1' pragma: @@ -17523,16 +16122,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17541,7 +16139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:33 GMT + - Tue, 13 Jul 2021 13:43:16 GMT expires: - '-1' pragma: @@ -17578,16 +16176,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17596,7 +16193,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:34 GMT + - Tue, 13 Jul 2021 13:43:17 GMT expires: - '-1' pragma: @@ -17633,16 +16230,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17651,7 +16247,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:36 GMT + - Tue, 13 Jul 2021 13:43:18 GMT expires: - '-1' pragma: @@ -17688,16 +16284,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17706,7 +16301,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:37 GMT + - Tue, 13 Jul 2021 13:43:19 GMT expires: - '-1' pragma: @@ -17743,16 +16338,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17761,7 +16355,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:38 GMT + - Tue, 13 Jul 2021 13:43:21 GMT expires: - '-1' pragma: @@ -17798,16 +16392,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17816,7 +16409,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:39 GMT + - Tue, 13 Jul 2021 13:43:22 GMT expires: - '-1' pragma: @@ -17853,16 +16446,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17871,7 +16463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:40 GMT + - Tue, 13 Jul 2021 13:43:23 GMT expires: - '-1' pragma: @@ -17908,16 +16500,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17926,7 +16517,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:42 GMT + - Tue, 13 Jul 2021 13:43:24 GMT expires: - '-1' pragma: @@ -17963,16 +16554,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17981,7 +16571,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:43 GMT + - Tue, 13 Jul 2021 13:43:26 GMT expires: - '-1' pragma: @@ -18018,16 +16608,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18036,7 +16625,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:44 GMT + - Tue, 13 Jul 2021 13:43:27 GMT expires: - '-1' pragma: @@ -18073,16 +16662,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18091,7 +16679,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:45 GMT + - Tue, 13 Jul 2021 13:43:28 GMT expires: - '-1' pragma: @@ -18128,16 +16716,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18146,7 +16733,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:46 GMT + - Tue, 13 Jul 2021 13:43:29 GMT expires: - '-1' pragma: @@ -18183,16 +16770,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18201,7 +16787,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:48 GMT + - Tue, 13 Jul 2021 13:43:31 GMT expires: - '-1' pragma: @@ -18238,16 +16824,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18256,7 +16841,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:49 GMT + - Tue, 13 Jul 2021 13:43:32 GMT expires: - '-1' pragma: @@ -18293,16 +16878,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18311,7 +16895,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:50 GMT + - Tue, 13 Jul 2021 13:43:33 GMT expires: - '-1' pragma: @@ -18348,16 +16932,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18366,7 +16949,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:51 GMT + - Tue, 13 Jul 2021 13:43:34 GMT expires: - '-1' pragma: @@ -18403,16 +16986,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18421,7 +17003,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:53 GMT + - Tue, 13 Jul 2021 13:43:36 GMT expires: - '-1' pragma: @@ -18458,16 +17040,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18476,7 +17057,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:54 GMT + - Tue, 13 Jul 2021 13:43:37 GMT expires: - '-1' pragma: @@ -18513,16 +17094,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18531,7 +17111,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:55 GMT + - Tue, 13 Jul 2021 13:43:38 GMT expires: - '-1' pragma: @@ -18568,16 +17148,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18586,7 +17165,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:56 GMT + - Tue, 13 Jul 2021 13:43:39 GMT expires: - '-1' pragma: @@ -18623,16 +17202,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18641,7 +17219,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:58 GMT + - Tue, 13 Jul 2021 13:43:40 GMT expires: - '-1' pragma: @@ -18678,16 +17256,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18696,7 +17273,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:43:59 GMT + - Tue, 13 Jul 2021 13:43:43 GMT expires: - '-1' pragma: @@ -18733,16 +17310,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18751,7 +17327,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:00 GMT + - Tue, 13 Jul 2021 13:43:44 GMT expires: - '-1' pragma: @@ -18788,16 +17364,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18806,7 +17381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:01 GMT + - Tue, 13 Jul 2021 13:43:45 GMT expires: - '-1' pragma: @@ -18843,16 +17418,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18861,7 +17435,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:02 GMT + - Tue, 13 Jul 2021 13:43:46 GMT expires: - '-1' pragma: @@ -18898,16 +17472,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18916,7 +17489,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:04 GMT + - Tue, 13 Jul 2021 13:43:47 GMT expires: - '-1' pragma: @@ -18953,16 +17526,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18971,7 +17543,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:05 GMT + - Tue, 13 Jul 2021 13:43:49 GMT expires: - '-1' pragma: @@ -19008,16 +17580,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19026,7 +17597,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:06 GMT + - Tue, 13 Jul 2021 13:43:50 GMT expires: - '-1' pragma: @@ -19063,16 +17634,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19081,7 +17651,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:07 GMT + - Tue, 13 Jul 2021 13:43:51 GMT expires: - '-1' pragma: @@ -19118,16 +17688,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19136,7 +17705,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:09 GMT + - Tue, 13 Jul 2021 13:43:53 GMT expires: - '-1' pragma: @@ -19173,16 +17742,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19191,7 +17759,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:10 GMT + - Tue, 13 Jul 2021 13:43:54 GMT expires: - '-1' pragma: @@ -19228,16 +17796,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19246,7 +17813,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:11 GMT + - Tue, 13 Jul 2021 13:43:55 GMT expires: - '-1' pragma: @@ -19283,16 +17850,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19301,7 +17867,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:13 GMT + - Tue, 13 Jul 2021 13:43:56 GMT expires: - '-1' pragma: @@ -19338,16 +17904,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19356,7 +17921,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:14 GMT + - Tue, 13 Jul 2021 13:43:58 GMT expires: - '-1' pragma: @@ -19393,16 +17958,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19411,7 +17975,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:16 GMT + - Tue, 13 Jul 2021 13:43:59 GMT expires: - '-1' pragma: @@ -19448,16 +18012,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19466,7 +18029,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:17 GMT + - Tue, 13 Jul 2021 13:44:00 GMT expires: - '-1' pragma: @@ -19503,16 +18066,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19521,7 +18083,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:18 GMT + - Tue, 13 Jul 2021 13:44:01 GMT expires: - '-1' pragma: @@ -19558,16 +18120,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"InProgress","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19576,7 +18137,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:19 GMT + - Tue, 13 Jul 2021 13:44:03 GMT expires: - '-1' pragma: @@ -19613,25 +18174,24 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5e712b40-3704-415b-a75b-c2c6d6ab2915?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 response: body: - string: '{"id":"5e712b40-3704-415b-a75b-c2c6d6ab2915","name":"5e712b40-3704-415b-a75b-c2c6d6ab2915","status":"Succeeded","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"2021-06-21T18:42:38.1703856Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1c614e9c-e0de-4717-9ac7-aed8f3719de2"}}' + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"InProgress","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:21 GMT + - Tue, 13 Jul 2021 13:44:04 GMT expires: - '-1' pragma: @@ -19668,17 +18228,70 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0aedff0-2e5d-4d85-b0dd-6189a94315b4?api-version=2021-01-01 + response: + body: + string: '{"id":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","name":"c0aedff0-2e5d-4d85-b0dd-6189a94315b4","status":"Succeeded","startTime":"2021-07-13T13:42:22.2506414Z","endTime":"2021-07-13T13:42:22.2506414Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b27df08e-71ba-4960-a9ac-8863e2f45e5f"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 13 Jul 2021 13:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --workload-type --delete-backup-data + --yes + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c614e9c-e0de-4717-9ac7-aed8f3719de2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b27df08e-71ba-4960-a9ac-8863e2f45e5f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c614e9c-e0de-4717-9ac7-aed8f3719de2","name":"1c614e9c-e0de-4717-9ac7-aed8f3719de2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M41.7732618S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T18:42:38.1703856Z","endTime":"2021-06-21T18:44:19.9436474Z","activityId":"730ab05e-d2c0-11eb-acaf-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b27df08e-71ba-4960-a9ac-8863e2f45e5f","name":"b27df08e-71ba-4960-a9ac-8863e2f45e5f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M42.2359517S","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-07-13T13:42:22.2506414Z","endTime":"2021-07-13T13:44:04.4865931Z","activityId":"24925fde-e3e0-11eb-9c01-00155ddc6812"}}' headers: cache-control: - no-cache @@ -19687,7 +18300,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:21 GMT + - Tue, 13 Jul 2021 13:44:05 GMT expires: - '-1' pragma: @@ -19724,9 +18337,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - (MSI) + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET @@ -19742,7 +18354,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 18:44:21 GMT + - Tue, 13 Jul 2021 13:44:05 GMT expires: - '-1' pragma: @@ -19768,7 +18380,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -19780,10 +18392,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 (MSI) azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -19793,7 +18404,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 18:44:24 GMT + - Tue, 13 Jul 2021 13:44:08 GMT expires: - '-1' pragma: @@ -19803,7 +18414,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_backup_softdelete.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_softdelete.yaml index 0fe711c42f4..e949c66d043 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,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T17%3A18%3A57.8683615Z''\"","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-07-13T14%3A21%3A43.3523099Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:18:58 GMT + - Tue, 13 Jul 2021 14:21:43 GMT expires: - '-1' pragma: @@ -61,12 +61,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-06-21T17:18:47Z"},"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-07-13T14:21:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -75,7 +75,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:18:59 GMT + - Tue, 13 Jul 2021 14:21:44 GMT expires: - '-1' pragma: @@ -110,34 +110,35 @@ interactions: \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": - \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n - \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": - \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": - \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": - {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n - \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": - \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n - \ \"version\": \"latest\"\n }\n },\n \"Windows\": - {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": + \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n + \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": + \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n + \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n + \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": + \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n + \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": + \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": + \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n + \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\"\n }\n }\n }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n + \ \"version\": \"latest\"\n }\n }\n }\n }\n + \ }\n}\n" headers: accept-ranges: - bytes @@ -148,19 +149,19 @@ interactions: connection: - keep-alive content-length: - - '2501' + - '2525' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:00 GMT + - Tue, 13 Jul 2021 14:21:45 GMT etag: - - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Mon, 21 Jun 2021 17:24:00 GMT + - Tue, 13 Jul 2021 14:26:45 GMT source-age: - - '0' + - '175' strict-transport-security: - max-age=31536000 vary: @@ -174,15 +175,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 9a10e2c5d805e9e2893e1897b6f02e45871ce4df + - a60140d97a0b9412a1745b01e0b3ff6423cefc02 x-frame-options: - deny x-github-request-id: - - 3F76:7638:1DDD8D:303220:60CF5C10 + - B988:3D35:4ECD4C:5FD8B9:60EBB072 x-served-by: - - cache-qpg1229-QPG + - cache-qpg1235-QPG x-timer: - - S1624295940.389649,VS0,VE388 + - S1626186106.842258,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -202,7 +203,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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: @@ -216,7 +217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:00 GMT + - Tue, 13 Jul 2021 14:21:45 GMT expires: - '-1' pragma: @@ -284,15 +285,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.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_Di3rmbs7jVqVmkTmDDRjFJq5qyo8RLns","name":"vm_deploy_Di3rmbs7jVqVmkTmDDRjFJq5qyo8RLns","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6806747567046514783","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-21T17:19:05.8883898Z","duration":"PT3.3181581S","correlationId":"52216394-11f4-461c-8e06-c3de1152ba24","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_QSbloTBw0t2cfp9i9syg6PSUzvU4oq17","name":"vm_deploy_QSbloTBw0t2cfp9i9syg6PSUzvU4oq17","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5929043388705153192","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-13T14:21:50.7485699Z","duration":"PT2.9745602S","correlationId":"46a92e9b-c92b-4841-8571-2efc0a17d776","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_Di3rmbs7jVqVmkTmDDRjFJq5qyo8RLns/operationStatuses/08585773109429074040?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_QSbloTBw0t2cfp9i9syg6PSUzvU4oq17/operationStatuses/08585754207777036215?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -300,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:06 GMT + - Tue, 13 Jul 2021 14:21:52 GMT expires: - '-1' pragma: @@ -310,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -328,9 +329,93 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754207777036215?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: + - Tue, 13 Jul 2021 14:22: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 + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754207777036215?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: + - Tue, 13 Jul 2021 14:22: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 + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773109429074040?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/08585754207777036215?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -342,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:19:37 GMT + - Tue, 13 Jul 2021 14:23:22 GMT expires: - '-1' pragma: @@ -370,9 +455,177 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585773109429074040?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/08585754207777036215?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: + - Tue, 13 Jul 2021 14:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754207777036215?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: + - Tue, 13 Jul 2021 14:24:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754207777036215?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: + - Tue, 13 Jul 2021 14:24:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754207777036215?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: + - Tue, 13 Jul 2021 14:25:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585754207777036215?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -384,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:08 GMT + - Tue, 13 Jul 2021 14:25:56 GMT expires: - '-1' pragma: @@ -412,21 +665,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Di3rmbs7jVqVmkTmDDRjFJq5qyo8RLns","name":"vm_deploy_Di3rmbs7jVqVmkTmDDRjFJq5qyo8RLns","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6806747567046514783","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-21T17:20:05.6987614Z","duration":"PT1M3.1285297S","correlationId":"52216394-11f4-461c-8e06-c3de1152ba24","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_QSbloTBw0t2cfp9i9syg6PSUzvU4oq17","name":"vm_deploy_QSbloTBw0t2cfp9i9syg6PSUzvU4oq17","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5929043388705153192","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-13T14:25:30.8006012Z","duration":"PT3M43.0265915S","correlationId":"46a92e9b-c92b-4841-8571-2efc0a17d776","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: - - Mon, 21 Jun 2021 17:20:09 GMT + - Tue, 13 Jul 2021 14:25:56 GMT expires: - '-1' pragma: @@ -454,7 +707,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 response: @@ -463,16 +716,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\": \"98153f3f-3395-48fe-80a4-f1e8d389fe97\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"61813d70-5996-48de-8a1f-51c4a762e891\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_3d304f1d15144315b1ce6435bc44e38d\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_1885d2ee9d6e457eb47912029555f93a\",\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_3d304f1d15144315b1ce6435bc44e38d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_1885d2ee9d6e457eb47912029555f93a\"\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\": @@ -486,16 +739,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\": \"2021-06-21T17:20:09+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-07-13T14:25:57+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_3d304f1d15144315b1ce6435bc44e38d\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_1885d2ee9d6e457eb47912029555f93a\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T17:19:40.4572898+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:23:04.3321707+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-06-21T17:20:03.2867652+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-07-13T14:25:29.3809441+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}" @@ -503,11 +756,11 @@ interactions: cache-control: - no-cache content-length: - - '3457' + - '3466' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:09 GMT + - Tue, 13 Jul 2021 14:25:56 GMT expires: - '-1' pragma: @@ -542,20 +795,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"07cd62cd-1ef8-4cc9-b9ad-cce29f11bc13\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"05005a99-73f8-47ee-9c1d-dbbce0144458\\\"\",\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\": \"9a4fc86c-0563-4e2d-a6e4-df3dc64102e7\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"926e8d47-2e00-4360-9f7d-f091f5ee2d3f\",\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/\\\"07cd62cd-1ef8-4cc9-b9ad-cce29f11bc13\\\"\",\r\n + \ \"etag\": \"W/\\\"05005a99-73f8-47ee-9c1d-dbbce0144458\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -564,8 +817,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\": - \"z51o3kidwiaebnctbwcsp1cpha.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-5C-36-64\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"q2jwbuwqxvoudo25pvkbwvu2dh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-05-BB-2E\",\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\": @@ -579,9 +832,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:10 GMT + - Tue, 13 Jul 2021 14:25:57 GMT etag: - - W/"07cd62cd-1ef8-4cc9-b9ad-cce29f11bc13" + - W/"05005a99-73f8-47ee-9c1d-dbbce0144458" expires: - '-1' pragma: @@ -598,7 +851,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ad9ed2f1-e1cd-4497-824f-7616fe5b6821 + - 1be2ba97-ad94-4c0f-a2e1-4362bbff7c6f status: code: 200 message: OK @@ -616,18 +869,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.9 (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/\\\"af8063cd-bb49-4be6-aecc-9b193def82ef\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4a5faa7a-82ca-48f8-b408-94a82e757e88\\\"\",\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\": \"ced47f86-bdfa-43e3-b00d-1a559b3b75ca\",\r\n - \ \"ipAddress\": \"104.42.173.14\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"60d83eac-7857-4fd1-8418-2ff8293f9a10\",\r\n + \ \"ipAddress\": \"13.64.52.90\",\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 @@ -636,13 +889,13 @@ interactions: cache-control: - no-cache content-length: - - '1175' + - '1173' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:10 GMT + - Tue, 13 Jul 2021 14:25:57 GMT etag: - - W/"af8063cd-bb49-4be6-aecc-9b193def82ef" + - W/"4a5faa7a-82ca-48f8-b408-94a82e757e88" expires: - '-1' pragma: @@ -659,7 +912,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5dee4f45-b388-479c-ad28-f745b6a784bf + - 1daedc62-7ef4-4f73-84e8-2104677f724a status: code: 200 message: OK @@ -677,7 +930,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 response: @@ -686,16 +939,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\": \"98153f3f-3395-48fe-80a4-f1e8d389fe97\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"61813d70-5996-48de-8a1f-51c4a762e891\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_3d304f1d15144315b1ce6435bc44e38d\",\r\n + \"9600.20046.2107060802\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_1885d2ee9d6e457eb47912029555f93a\",\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_3d304f1d15144315b1ce6435bc44e38d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_1885d2ee9d6e457eb47912029555f93a\"\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\": @@ -709,11 +962,11 @@ interactions: cache-control: - no-cache content-length: - - '2242' + - '2248' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 17:20:10 GMT + - Tue, 13 Jul 2021 14:25:58 GMT expires: - '-1' pragma: @@ -748,12 +1001,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: - string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T17%3A18%3A57.8683615Z''\"","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-07-13T14%3A21%3A43.3523099Z''\"","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 @@ -762,7 +1015,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:11 GMT + - Tue, 13 Jul 2021 14:25:58 GMT expires: - '-1' pragma: @@ -794,15 +1047,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-22T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-22T03: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-07-14T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-07-14T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -811,7 +1064,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:12 GMT + - Tue, 13 Jul 2021 14:26:00 GMT expires: - '-1' pragma: @@ -827,7 +1080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -847,24 +1100,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asebvtvm2/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtvm2","name":"iaasvmcontainerv2;asebvtrg;asebvtvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm2","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asebvtvm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtvm3","name":"iaasvmcontainerv2;asebvtrg;asebvtvm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtvm3","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asecvtvm1/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asecvtvm1","name":"iaasvmcontainerv2;asebvtrg;asecvtvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asecvtvm1","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asecvtvm1","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;doslimttest_group;doslimttest/protectableItems/vm;iaasvmcontainerv2;doslimttest_group;doslimttest","name":"iaasvmcontainerv2;doslimttest_group;doslimttest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.Compute/virtualMachines/doslimttest","virtualMachineVersion":"Compute","resourceGroup":"doslimttest_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"doslimttest","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmcrrtesting;kosinghavm1/protectableItems/vm;iaasvmcontainerv2;iaasvmcrrtesting;kosinghavm1","name":"iaasvmcontainerv2;iaasvmcrrtesting;kosinghavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm1","virtualMachineVersion":"Compute","resourceGroup":"IAASVMCRRTesting","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"kosinghavm1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmcrrtesting;testing/protectableItems/vm;iaasvmcontainerv2;iaasvmcrrtesting;testing","name":"iaasvmcontainerv2;iaasvmcrrtesting;testing","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.Compute/virtualMachines/testing","virtualMachineVersion":"Compute","resourceGroup":"IAASVMCRRTesting","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testing","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest1;wuskosinghacrrtestvm2/protectableItems/vm;iaasvmcontainerv2;kosinghacrrtest1;wuskosinghacrrtestvm2","name":"iaasvmcontainerv2;kosinghacrrtest1;wuskosinghacrrtestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/wuskosinghacrrtestvm2","virtualMachineVersion":"Compute","resourceGroup":"kosinghacrrtest1","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"wuskosinghacrrtestvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;wuskosinghacrrtestvm1/protectableItems/vm;iaasvmcontainerv2;kosinghacrrtest;wuskosinghacrrtestvm1","name":"iaasvmcontainerv2;kosinghacrrtest;wuskosinghacrrtestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/wuskosinghaCRRTestVM1","virtualMachineVersion":"Compute","resourceGroup":"kosinghaCRRTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"wuskosinghaCRRTestVM1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;wuskosinghavm/protectableItems/vm;iaasvmcontainerv2;kosinghacrrtest;wuskosinghavm","name":"iaasvmcontainerv2;kosinghacrrtest;wuskosinghavm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/wusKosinghaVM","virtualMachineVersion":"Compute","resourceGroup":"kosinghaCRRTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"wusKosinghaVM","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '2696' + - '5766' content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:14 GMT + - Tue, 13 Jul 2021 14:26:02 GMT expires: - '-1' pragma: @@ -880,7 +1133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -902,8 +1155,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: POST @@ -913,17 +1166,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2019-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/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:16 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -951,12 +1204,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -966,11 +1219,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:18 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -998,12 +1251,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -1013,11 +1266,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:19 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1045,12 +1298,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -1060,11 +1313,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:20 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1092,12 +1345,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -1107,11 +1360,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:22 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1139,12 +1392,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -1154,11 +1407,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:23 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1186,12 +1439,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -1201,11 +1454,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:25 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1233,12 +1486,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' @@ -1248,11 +1501,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:26 GMT + - Tue, 13 Jul 2021 14:26: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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1280,22 +1533,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US 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/a87780b0-5563-4f11-8432-aa2c84aa3d2f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Mon, 21 Jun 2021 17:20:27 GMT + - Tue, 13 Jul 2021 14:26: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/operationResults/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1306,6 +1563,49 @@ 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.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + 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/74e377f2-2b5b-4e11-ba82-859fa8796ce0?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Tue, 13 Jul 2021 14:26:16 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 @@ -1323,24 +1623,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asebvtvm2/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtvm2","name":"iaasvmcontainerv2;asebvtrg;asebvtvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm2","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asebvtvm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtvm3","name":"iaasvmcontainerv2;asebvtrg;asebvtvm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtvm3","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asecvtvm1/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asecvtvm1","name":"iaasvmcontainerv2;asebvtrg;asecvtvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asecvtvm1","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asecvtvm1","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/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;doslimttest_group;doslimttest/protectableItems/vm;iaasvmcontainerv2;doslimttest_group;doslimttest","name":"iaasvmcontainerv2;doslimttest_group;doslimttest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doslimttest_group/providers/Microsoft.Compute/virtualMachines/doslimttest","virtualMachineVersion":"Compute","resourceGroup":"doslimttest_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"doslimttest","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmcrrtesting;kosinghavm1/protectableItems/vm;iaasvmcontainerv2;iaasvmcrrtesting;kosinghavm1","name":"iaasvmcontainerv2;iaasvmcrrtesting;kosinghavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.Compute/virtualMachines/kosinghavm1","virtualMachineVersion":"Compute","resourceGroup":"IAASVMCRRTesting","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"kosinghavm1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmcrrtesting;testing/protectableItems/vm;iaasvmcontainerv2;iaasvmcrrtesting;testing","name":"iaasvmcontainerv2;iaasvmcrrtesting;testing","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IAASVMCRRTesting/providers/Microsoft.Compute/virtualMachines/testing","virtualMachineVersion":"Compute","resourceGroup":"IAASVMCRRTesting","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testing","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest1;wuskosinghacrrtestvm2/protectableItems/vm;iaasvmcontainerv2;kosinghacrrtest1;wuskosinghacrrtestvm2","name":"iaasvmcontainerv2;kosinghacrrtest1;wuskosinghacrrtestvm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghacrrtest1/providers/Microsoft.Compute/virtualMachines/wuskosinghacrrtestvm2","virtualMachineVersion":"Compute","resourceGroup":"kosinghacrrtest1","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"wuskosinghacrrtestvm2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;wuskosinghacrrtestvm1/protectableItems/vm;iaasvmcontainerv2;kosinghacrrtest;wuskosinghacrrtestvm1","name":"iaasvmcontainerv2;kosinghacrrtest;wuskosinghacrrtestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/wuskosinghaCRRTestVM1","virtualMachineVersion":"Compute","resourceGroup":"kosinghaCRRTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"wuskosinghaCRRTestVM1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kosinghacrrtest;wuskosinghavm/protectableItems/vm;iaasvmcontainerv2;kosinghacrrtest;wuskosinghavm","name":"iaasvmcontainerv2;kosinghacrrtest;wuskosinghavm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kosinghaCRRTest/providers/Microsoft.Compute/virtualMachines/wusKosinghaVM","virtualMachineVersion":"Compute","resourceGroup":"kosinghaCRRTest","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"wusKosinghaVM","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '3956' + - '7026' content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:29 GMT + - Tue, 13 Jul 2021 14:26:17 GMT expires: - '-1' pragma: @@ -1382,8 +1682,8 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: PUT @@ -1393,17 +1693,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 17:20:31 GMT + - Tue, 13 Jul 2021 14:26: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/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -1431,15 +1731,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1448,7 +1748,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:32 GMT + - Tue, 13 Jul 2021 14:26:21 GMT expires: - '-1' pragma: @@ -1484,15 +1784,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1501,7 +1801,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:34 GMT + - Tue, 13 Jul 2021 14:26:23 GMT expires: - '-1' pragma: @@ -1537,15 +1837,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1554,7 +1854,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:35 GMT + - Tue, 13 Jul 2021 14:26:24 GMT expires: - '-1' pragma: @@ -1590,15 +1890,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1607,7 +1907,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:36 GMT + - Tue, 13 Jul 2021 14:26:26 GMT expires: - '-1' pragma: @@ -1643,15 +1943,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1660,7 +1960,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:38 GMT + - Tue, 13 Jul 2021 14:26:27 GMT expires: - '-1' pragma: @@ -1696,15 +1996,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1713,7 +2013,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:39 GMT + - Tue, 13 Jul 2021 14:26:29 GMT expires: - '-1' pragma: @@ -1749,15 +2049,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1766,7 +2066,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:40 GMT + - Tue, 13 Jul 2021 14:26:30 GMT expires: - '-1' pragma: @@ -1802,15 +2102,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1819,7 +2119,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:42 GMT + - Tue, 13 Jul 2021 14:26:31 GMT expires: - '-1' pragma: @@ -1855,15 +2155,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1872,7 +2172,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:43 GMT + - Tue, 13 Jul 2021 14:26:33 GMT expires: - '-1' pragma: @@ -1908,15 +2208,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1925,7 +2225,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:45 GMT + - Tue, 13 Jul 2021 14:26:35 GMT expires: - '-1' pragma: @@ -1961,15 +2261,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1978,7 +2278,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:46 GMT + - Tue, 13 Jul 2021 14:26:36 GMT expires: - '-1' pragma: @@ -2014,15 +2314,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2031,7 +2331,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:47 GMT + - Tue, 13 Jul 2021 14:26:38 GMT expires: - '-1' pragma: @@ -2067,15 +2367,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2084,7 +2384,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:49 GMT + - Tue, 13 Jul 2021 14:26:39 GMT expires: - '-1' pragma: @@ -2120,15 +2420,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2137,7 +2437,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:50 GMT + - Tue, 13 Jul 2021 14:26:41 GMT expires: - '-1' pragma: @@ -2173,15 +2473,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2190,7 +2490,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:51 GMT + - Tue, 13 Jul 2021 14:26:42 GMT expires: - '-1' pragma: @@ -2226,15 +2526,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2243,7 +2543,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:53 GMT + - Tue, 13 Jul 2021 14:26:43 GMT expires: - '-1' pragma: @@ -2279,15 +2579,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2296,7 +2596,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:54 GMT + - Tue, 13 Jul 2021 14:26:45 GMT expires: - '-1' pragma: @@ -2332,15 +2632,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2349,7 +2649,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:56 GMT + - Tue, 13 Jul 2021 14:26:46 GMT expires: - '-1' pragma: @@ -2385,15 +2685,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2402,7 +2702,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:57 GMT + - Tue, 13 Jul 2021 14:26:48 GMT expires: - '-1' pragma: @@ -2438,15 +2738,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2455,7 +2755,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:20:58 GMT + - Tue, 13 Jul 2021 14:26:49 GMT expires: - '-1' pragma: @@ -2491,15 +2791,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2508,7 +2808,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:00 GMT + - Tue, 13 Jul 2021 14:26:50 GMT expires: - '-1' pragma: @@ -2544,15 +2844,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2561,7 +2861,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:01 GMT + - Tue, 13 Jul 2021 14:26:52 GMT expires: - '-1' pragma: @@ -2597,15 +2897,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2614,7 +2914,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:03 GMT + - Tue, 13 Jul 2021 14:26:53 GMT expires: - '-1' pragma: @@ -2650,15 +2950,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2667,7 +2967,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:05 GMT + - Tue, 13 Jul 2021 14:26:55 GMT expires: - '-1' pragma: @@ -2703,15 +3003,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2720,7 +3020,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:06 GMT + - Tue, 13 Jul 2021 14:26:56 GMT expires: - '-1' pragma: @@ -2756,15 +3056,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2773,7 +3073,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:08 GMT + - Tue, 13 Jul 2021 14:26:58 GMT expires: - '-1' pragma: @@ -2809,15 +3109,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2826,7 +3126,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:09 GMT + - Tue, 13 Jul 2021 14:26:59 GMT expires: - '-1' pragma: @@ -2862,15 +3162,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2879,7 +3179,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:11 GMT + - Tue, 13 Jul 2021 14:27:01 GMT expires: - '-1' pragma: @@ -2915,15 +3215,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2932,7 +3232,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:12 GMT + - Tue, 13 Jul 2021 14:27:02 GMT expires: - '-1' pragma: @@ -2968,15 +3268,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2985,7 +3285,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:13 GMT + - Tue, 13 Jul 2021 14:27:03 GMT expires: - '-1' pragma: @@ -3021,68 +3321,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 - response: - body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:21: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: - - '119' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3091,7 +3338,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:16 GMT + - Tue, 13 Jul 2021 14:27:05 GMT expires: - '-1' pragma: @@ -3107,60 +3354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 - response: - body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 17:21: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: - - '117' + - '119' x-powered-by: - ASP.NET status: @@ -3180,15 +3374,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3197,7 +3391,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:19 GMT + - Tue, 13 Jul 2021 14:27:06 GMT expires: - '-1' pragma: @@ -3213,7 +3407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '118' x-powered-by: - ASP.NET status: @@ -3233,15 +3427,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3250,7 +3444,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:20 GMT + - Tue, 13 Jul 2021 14:27:08 GMT expires: - '-1' pragma: @@ -3266,7 +3460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '117' x-powered-by: - ASP.NET status: @@ -3286,15 +3480,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3303,7 +3497,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:22 GMT + - Tue, 13 Jul 2021 14:27:09 GMT expires: - '-1' pragma: @@ -3319,7 +3513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '116' x-powered-by: - ASP.NET status: @@ -3339,15 +3533,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3356,7 +3550,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:23 GMT + - Tue, 13 Jul 2021 14:27:11 GMT expires: - '-1' pragma: @@ -3372,7 +3566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '115' x-powered-by: - ASP.NET status: @@ -3392,15 +3586,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3409,7 +3603,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:25 GMT + - Tue, 13 Jul 2021 14:27:12 GMT expires: - '-1' pragma: @@ -3425,7 +3619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '114' x-powered-by: - ASP.NET status: @@ -3445,15 +3639,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3462,7 +3656,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:26 GMT + - Tue, 13 Jul 2021 14:27:13 GMT expires: - '-1' pragma: @@ -3478,7 +3672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '113' x-powered-by: - ASP.NET status: @@ -3498,15 +3692,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3515,7 +3709,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:27 GMT + - Tue, 13 Jul 2021 14:27:15 GMT expires: - '-1' pragma: @@ -3531,7 +3725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '112' x-powered-by: - ASP.NET status: @@ -3551,15 +3745,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3568,7 +3762,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:29 GMT + - Tue, 13 Jul 2021 14:27:16 GMT expires: - '-1' pragma: @@ -3584,7 +3778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '111' x-powered-by: - ASP.NET status: @@ -3604,15 +3798,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3621,7 +3815,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:30 GMT + - Tue, 13 Jul 2021 14:27:18 GMT expires: - '-1' pragma: @@ -3637,7 +3831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '110' x-powered-by: - ASP.NET status: @@ -3657,15 +3851,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3674,7 +3868,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:31 GMT + - Tue, 13 Jul 2021 14:27:19 GMT expires: - '-1' pragma: @@ -3690,7 +3884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '109' x-powered-by: - ASP.NET status: @@ -3710,15 +3904,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3727,7 +3921,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:33 GMT + - Tue, 13 Jul 2021 14:27:21 GMT expires: - '-1' pragma: @@ -3743,7 +3937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '108' x-powered-by: - ASP.NET status: @@ -3763,15 +3957,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3780,7 +3974,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:34 GMT + - Tue, 13 Jul 2021 14:27:22 GMT expires: - '-1' pragma: @@ -3796,7 +3990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '107' x-powered-by: - ASP.NET status: @@ -3816,15 +4010,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3833,7 +4027,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:36 GMT + - Tue, 13 Jul 2021 14:27:24 GMT expires: - '-1' pragma: @@ -3849,7 +4043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '106' x-powered-by: - ASP.NET status: @@ -3869,15 +4063,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3886,7 +4080,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:37 GMT + - Tue, 13 Jul 2021 14:27:25 GMT expires: - '-1' pragma: @@ -3902,7 +4096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '105' x-powered-by: - ASP.NET status: @@ -3922,15 +4116,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3939,7 +4133,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:38 GMT + - Tue, 13 Jul 2021 14:27:27 GMT expires: - '-1' pragma: @@ -3955,7 +4149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '104' x-powered-by: - ASP.NET status: @@ -3975,15 +4169,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3992,7 +4186,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:40 GMT + - Tue, 13 Jul 2021 14:27:28 GMT expires: - '-1' pragma: @@ -4008,7 +4202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '103' x-powered-by: - ASP.NET status: @@ -4028,15 +4222,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4045,7 +4239,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:41 GMT + - Tue, 13 Jul 2021 14:27:29 GMT expires: - '-1' pragma: @@ -4061,7 +4255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '102' x-powered-by: - ASP.NET status: @@ -4081,15 +4275,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4098,7 +4292,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:42 GMT + - Tue, 13 Jul 2021 14:27:31 GMT expires: - '-1' pragma: @@ -4114,7 +4308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '101' x-powered-by: - ASP.NET status: @@ -4134,15 +4328,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4151,7 +4345,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:44 GMT + - Tue, 13 Jul 2021 14:27:32 GMT expires: - '-1' pragma: @@ -4167,7 +4361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '100' x-powered-by: - ASP.NET status: @@ -4187,15 +4381,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4204,7 +4398,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:45 GMT + - Tue, 13 Jul 2021 14:27:34 GMT expires: - '-1' pragma: @@ -4220,7 +4414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '99' x-powered-by: - ASP.NET status: @@ -4240,15 +4434,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4257,7 +4451,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:47 GMT + - Tue, 13 Jul 2021 14:27:35 GMT expires: - '-1' pragma: @@ -4273,7 +4467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '98' x-powered-by: - ASP.NET status: @@ -4293,15 +4487,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4310,7 +4504,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:48 GMT + - Tue, 13 Jul 2021 14:27:37 GMT expires: - '-1' pragma: @@ -4326,7 +4520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '97' x-powered-by: - ASP.NET status: @@ -4346,15 +4540,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4363,7 +4557,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:50 GMT + - Tue, 13 Jul 2021 14:27:38 GMT expires: - '-1' pragma: @@ -4379,7 +4573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '96' x-powered-by: - ASP.NET status: @@ -4399,15 +4593,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4416,7 +4610,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:51 GMT + - Tue, 13 Jul 2021 14:27:39 GMT expires: - '-1' pragma: @@ -4432,7 +4626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '95' x-powered-by: - ASP.NET status: @@ -4452,15 +4646,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4469,7 +4663,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:52 GMT + - Tue, 13 Jul 2021 14:27:41 GMT expires: - '-1' pragma: @@ -4485,7 +4679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '94' x-powered-by: - ASP.NET status: @@ -4505,15 +4699,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4522,7 +4716,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:54 GMT + - Tue, 13 Jul 2021 14:27:42 GMT expires: - '-1' pragma: @@ -4538,7 +4732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '93' x-powered-by: - ASP.NET status: @@ -4558,15 +4752,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4575,7 +4769,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:55 GMT + - Tue, 13 Jul 2021 14:27:44 GMT expires: - '-1' pragma: @@ -4591,7 +4785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '92' x-powered-by: - ASP.NET status: @@ -4611,15 +4805,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4628,7 +4822,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:56 GMT + - Tue, 13 Jul 2021 14:27:45 GMT expires: - '-1' pragma: @@ -4644,7 +4838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '91' x-powered-by: - ASP.NET status: @@ -4664,15 +4858,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4681,7 +4875,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:58 GMT + - Tue, 13 Jul 2021 14:27:46 GMT expires: - '-1' pragma: @@ -4697,7 +4891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '90' x-powered-by: - ASP.NET status: @@ -4717,15 +4911,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4734,7 +4928,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:21:59 GMT + - Tue, 13 Jul 2021 14:27:49 GMT expires: - '-1' pragma: @@ -4750,7 +4944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '89' x-powered-by: - ASP.NET status: @@ -4770,15 +4964,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"InProgress","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"InProgress","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4787,7 +4981,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:01 GMT + - Tue, 13 Jul 2021 14:27:50 GMT expires: - '-1' pragma: @@ -4803,7 +4997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '88' x-powered-by: - ASP.NET status: @@ -4823,15 +5017,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/515cb239-de06-4f65-bcd2-878bee23547e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25ecc6c6-7438-4e0a-8665-3fe833e15bc2?api-version=2021-01-01 response: body: - string: '{"id":"515cb239-de06-4f65-bcd2-878bee23547e","name":"515cb239-de06-4f65-bcd2-878bee23547e","status":"Succeeded","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"2021-06-21T17:20:31.1501963Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7f921862-56f7-420e-875a-225120535dc5"}}' + string: '{"id":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","name":"25ecc6c6-7438-4e0a-8665-3fe833e15bc2","status":"Succeeded","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"2021-07-13T14:26:19.9106521Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f99cfc50-9896-4deb-8cca-cb9f7dec7607"}}' headers: cache-control: - no-cache @@ -4840,7 +5034,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:02 GMT + - Tue, 13 Jul 2021 14:27:52 GMT expires: - '-1' pragma: @@ -4856,7 +5050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '87' x-powered-by: - ASP.NET status: @@ -4876,16 +5070,16 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7f921862-56f7-420e-875a-225120535dc5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f99cfc50-9896-4deb-8cca-cb9f7dec7607?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7f921862-56f7-420e-875a-225120535dc5","name":"7f921862-56f7-420e-875a-225120535dc5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.5906389S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T17:20:31.1501963Z","endTime":"2021-06-21T17:22:02.7408352Z","activityId":"ee979bcd-d2b4-11eb-a4c9-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f99cfc50-9896-4deb-8cca-cb9f7dec7607","name":"f99cfc50-9896-4deb-8cca-cb9f7dec7607","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.6476116S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-07-13T14:26:19.9106521Z","endTime":"2021-07-13T14:27:51.5582637Z","activityId":"3c74eafa-e3e6-11eb-9928-00155ddc6812"}}' headers: cache-control: - no-cache @@ -4894,7 +5088,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:03 GMT + - Tue, 13 Jul 2021 14:27:53 GMT expires: - '-1' pragma: @@ -4911,7 +5105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -4932,24 +5126,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1126304527385870129","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + 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":"246292350964228","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1993' + - '1989' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:04 GMT + - Tue, 13 Jul 2021 14:27:55 GMT expires: - '-1' pragma: @@ -4988,8 +5182,8 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: DELETE @@ -4999,17 +5193,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38b49fd4-8d8e-4218-8de6-7a2945aaf257?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 17:22:06 GMT + - Tue, 13 Jul 2021 14:27:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/38b49fd4-8d8e-4218-8de6-7a2945aaf257?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -5038,24 +5232,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38b49fd4-8d8e-4218-8de6-7a2945aaf257?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38b49fd4-8d8e-4218-8de6-7a2945aaf257","name":"38b49fd4-8d8e-4218-8de6-7a2945aaf257","status":"Succeeded","startTime":"2021-07-13T14:27:56.3585915Z","endTime":"2021-07-13T14:27:56.3585915Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0ede6639-e762-4ffd-ba04-e9faae5cd844"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:06 GMT + - Tue, 13 Jul 2021 14:33:21 GMT expires: - '-1' pragma: @@ -5092,30 +5286,32 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0ede6639-e762-4ffd-ba04-e9faae5cd844?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0ede6639-e762-4ffd-ba04-e9faae5cd844","name":"0ede6639-e762-4ffd-ba04-e9faae5cd844","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.4108641S","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-07-13T14:27:56.3585915Z","endTime":"2021-07-13T14:28:07.7694556Z","activityId":"815ff61c-e3e6-11eb-ba83-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '188' + - '971' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:07 GMT + - Tue, 13 Jul 2021 14: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: @@ -5125,7 +5321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5139,31 +5335,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item show 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 -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"246292350964228","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-07-13T14:27:56.3585915Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:54:29.6856483","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1889' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:08 GMT + - Tue, 13 Jul 2021 14:33:26 GMT expires: - '-1' pragma: @@ -5179,7 +5374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -5193,31 +5388,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"246292350964228","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-07-13T14:27:56.3585915Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:54:28.0277408","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1889' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:10 GMT + - Tue, 13 Jul 2021 14:33:27 GMT expires: - '-1' pragma: @@ -5233,12 +5427,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '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": "", "isRehydrate": true, "protectedItemType": "Microsoft.Compute/virtualMachines", + "protectionState": "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection undelete + Connection: + - keep-alive + Content-Length: + - '377' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i --workload-type --backup-management-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 13 Jul 2021 14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -5247,22 +5496,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5271,7 +5519,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:12 GMT + - Tue, 13 Jul 2021 14:33:31 GMT expires: - '-1' pragma: @@ -5287,7 +5535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -5301,22 +5549,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5325,7 +5572,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:13 GMT + - Tue, 13 Jul 2021 14:33:32 GMT expires: - '-1' pragma: @@ -5341,7 +5588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '148' x-powered-by: - ASP.NET status: @@ -5355,22 +5602,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5379,7 +5625,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:15 GMT + - Tue, 13 Jul 2021 14:33:35 GMT expires: - '-1' pragma: @@ -5395,7 +5641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '147' x-powered-by: - ASP.NET status: @@ -5409,22 +5655,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"InProgress","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5433,7 +5678,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:16 GMT + - Tue, 13 Jul 2021 14:33:36 GMT expires: - '-1' pragma: @@ -5449,7 +5694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '146' x-powered-by: - ASP.NET status: @@ -5463,31 +5708,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bf5024c0-2dcf-475b-bd0f-d1993238e1f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"id":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","name":"bf5024c0-2dcf-475b-bd0f-d1993238e1f5","status":"Succeeded","startTime":"2021-06-21T17:22:06.0731902Z","endTime":"2021-06-21T17:22:06.0731902Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c4450a63-e3f6-4901-9a90-4818813aa391"}}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:18 GMT + - Tue, 13 Jul 2021 14:33:37 GMT expires: - '-1' pragma: @@ -5503,7 +5747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '145' x-powered-by: - ASP.NET status: @@ -5517,39 +5761,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c4450a63-e3f6-4901-9a90-4818813aa391?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c4450a63-e3f6-4901-9a90-4818813aa391","name":"c4450a63-e3f6-4901-9a90-4818813aa391","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.2088028S","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-06-21T17:22:06.0731902Z","endTime":"2021-06-21T17:22:17.281993Z","activityId":"321dd58e-d2b5-11eb-b8ca-c8f750f92764"}}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:18 GMT + - Tue, 13 Jul 2021 14:33: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: @@ -5559,7 +5800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -5573,30 +5814,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection undelete Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1126304527385870129","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-06-21T17:22:06.0731902Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:44.8580975","isArchiveEnabled":false}}]}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"InProgress","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1893' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:20 GMT + - Tue, 13 Jul 2021 14:33:40 GMT expires: - '-1' pragma: @@ -5612,7 +5853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -5632,24 +5873,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d56f693a-22bf-412f-85ec-687cd44db846?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1126304527385870129","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-06-21T17:22:06.0731902Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:44.2589666","isArchiveEnabled":false}}]}' + string: '{"id":"d56f693a-22bf-412f-85ec-687cd44db846","name":"d56f693a-22bf-412f-85ec-687cd44db846","status":"Succeeded","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"2021-07-13T14:33:30.2221789Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f4d5fc39-5f54-4bf9-ae1a-3dbdee8feaf3"}}' headers: cache-control: - no-cache content-length: - - '1893' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:21 GMT + - Tue, 13 Jul 2021 14:33:42 GMT expires: - '-1' pragma: @@ -5665,16 +5906,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": "", "isRehydrate": true, "protectedItemType": "Microsoft.Compute/virtualMachines", - "protectionState": "ProtectionStopped"}}' + body: null headers: Accept: - application/json @@ -5684,48 +5923,50 @@ interactions: - backup protection undelete Connection: - keep-alive - Content-Length: - - '377' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f4d5fc39-5f54-4bf9-ae1a-3dbdee8feaf3?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f4d5fc39-5f54-4bf9-ae1a-3dbdee8feaf3","name":"f4d5fc39-5f54-4bf9-ae1a-3dbdee8feaf3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.4504496S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Undelete flag":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Undelete","status":"Completed","startTime":"2021-07-13T14:33:30.2221789Z","endTime":"2021-07-13T14:33:41.6726285Z","activityId":"47bb95f6-e3e7-11eb-8def-00155ddc6812"}}' headers: - 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/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '954' + content-type: + - application/json date: - - Mon, 21 Jun 2021 17:22:23 GMT + - Tue, 13 Jul 2021 14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-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: @@ -5734,30 +5975,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup vault backup-properties set Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2021-01-01 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","endTime":"0001-01-01T00:00:00"}' + 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: - - '188' + - '446' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:24 GMT + - Tue, 13 Jul 2021 14:33:44 GMT expires: - '-1' pragma: @@ -5773,44 +6014,49 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"enhancedSecurityState": "Enabled", "softDeleteFeatureState": + "Disabled"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup vault backup-properties set Connection: - keep-alive + Content-Length: + - '90' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2021-01-01 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","endTime":"0001-01-01T00:00:00"}' + 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: - - '188' + - '447' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:25 GMT + - Tue, 13 Jul 2021 14:33:44 GMT expires: - '-1' pragma: @@ -5825,8 +6071,8 @@ interactions: - 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: @@ -5840,30 +6086,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"246292350964228","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":"","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1744' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:27 GMT + - Tue, 13 Jul 2021 14:33:45 GMT expires: - '-1' pragma: @@ -5879,7 +6125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -5893,30 +6139,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup container list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","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","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: - - '188' + - '1220' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:28 GMT + - Tue, 13 Jul 2021 14:33:46 GMT expires: - '-1' pragma: @@ -5932,7 +6178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -5946,30 +6192,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"246292350964228","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":"","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1744' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:30 GMT + - Tue, 13 Jul 2021 14:33:48 GMT expires: - '-1' pragma: @@ -5985,7 +6231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -5999,30 +6245,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"246292350964228","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":"","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1744' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:31 GMT + - Tue, 13 Jul 2021 14:33:49 GMT expires: - '-1' pragma: @@ -6038,7 +6285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: @@ -6052,51 +6299,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-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=2021-01-01 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","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/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 17:22:32 GMT + - Tue, 13 Jul 2021 14: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/backupOperationResults/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + 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: @@ -6105,21 +6351,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"InProgress","startTime":"2021-06-21T17:22:23.6286526Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6128,7 +6375,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:34 GMT + - Tue, 13 Jul 2021 14:33:50 GMT expires: - '-1' pragma: @@ -6144,7 +6391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '149' x-powered-by: - ASP.NET status: @@ -6158,30 +6405,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e1bdd844-fb71-498c-a7cc-2ebcacb2daa9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","name":"e1bdd844-fb71-498c-a7cc-2ebcacb2daa9","status":"Succeeded","startTime":"2021-06-21T17:22:23.6286526Z","endTime":"2021-06-21T17:22:23.6286526Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"289e2bd8-6fe8-44f3-a6c4-faa2a61a66d7"}}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:35 GMT + - Tue, 13 Jul 2021 14:33:52 GMT expires: - '-1' pragma: @@ -6197,7 +6445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '148' x-powered-by: - ASP.NET status: @@ -6211,38 +6459,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection undelete + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/289e2bd8-6fe8-44f3-a6c4-faa2a61a66d7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/289e2bd8-6fe8-44f3-a6c4-faa2a61a66d7","name":"289e2bd8-6fe8-44f3-a6c4-faa2a61a66d7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.233797S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Undelete flag":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Undelete","status":"Completed","startTime":"2021-06-21T17:22:23.6286526Z","endTime":"2021-06-21T17:22:34.8624496Z","activityId":"3c77f1cf-d2b5-11eb-8695-c8f750f92764"}}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '953' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:36 GMT + - Tue, 13 Jul 2021 14:33: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: @@ -6252,7 +6499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -6266,30 +6513,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup vault backup-properties set + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -n --soft-delete-feature-state + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig","name":"vaultconfig","type":"Microsoft.RecoveryServices/vaults/backupconfig","properties":{"enhancedSecurityState":"Enabled","softDeleteFeatureState":"Enabled","isSoftDeleteFeatureStateEditable":true}}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '446' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:38 GMT + - Tue, 13 Jul 2021 14:33:55 GMT expires: - '-1' pragma: @@ -6305,49 +6553,45 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' 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 disable Connection: - keep-alive - Content-Length: - - '90' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --soft-delete-feature-state + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig","name":"vaultconfig","type":"Microsoft.RecoveryServices/vaults/backupconfig","properties":{"enhancedSecurityState":"Enabled","softDeleteFeatureState":"Disabled","isSoftDeleteFeatureStateEditable":true}}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '447' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:38 GMT + - Tue, 13 Jul 2021 14:33:59 GMT expires: - '-1' pragma: @@ -6362,8 +6606,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6377,30 +6621,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1126304527385870129","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":"","isArchiveEnabled":false}}]}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1748' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:40 GMT + - Tue, 13 Jul 2021 14:34:00 GMT expires: - '-1' pragma: @@ -6416,7 +6661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -6430,30 +6675,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:41 GMT + - Tue, 13 Jul 2021 14:34:02 GMT expires: - '-1' pragma: @@ -6469,7 +6715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -6483,30 +6729,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1126304527385870129","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":"","isArchiveEnabled":false}}]}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1748' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:41 GMT + - Tue, 13 Jul 2021 14:34:03 GMT expires: - '-1' pragma: @@ -6522,7 +6769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -6543,24 +6790,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","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":"1126304527385870129","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":"","isArchiveEnabled":false}}]}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1748' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:43 GMT + - Tue, 13 Jul 2021 14:34:04 GMT expires: - '-1' pragma: @@ -6576,7 +6823,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -6593,47 +6840,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.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","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/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 21 Jun 2021 17:22:45 GMT + - Tue, 13 Jul 2021 14: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/backupOperationResults/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-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: @@ -6649,15 +6898,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6666,7 +6915,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:45 GMT + - Tue, 13 Jul 2021 14:34:07 GMT expires: - '-1' pragma: @@ -6682,7 +6931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '139' x-powered-by: - ASP.NET status: @@ -6703,15 +6952,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6720,7 +6969,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:46 GMT + - Tue, 13 Jul 2021 14:34:08 GMT expires: - '-1' pragma: @@ -6736,7 +6985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '138' x-powered-by: - ASP.NET status: @@ -6757,15 +7006,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6774,7 +7023,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:48 GMT + - Tue, 13 Jul 2021 14:34:10 GMT expires: - '-1' pragma: @@ -6790,7 +7039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '137' x-powered-by: - ASP.NET status: @@ -6811,15 +7060,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6828,7 +7077,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:49 GMT + - Tue, 13 Jul 2021 14:34:11 GMT expires: - '-1' pragma: @@ -6844,7 +7093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '136' x-powered-by: - ASP.NET status: @@ -6865,15 +7114,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6882,7 +7131,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:51 GMT + - Tue, 13 Jul 2021 14:34:13 GMT expires: - '-1' pragma: @@ -6898,7 +7147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '135' x-powered-by: - ASP.NET status: @@ -6919,15 +7168,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6936,7 +7185,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:52 GMT + - Tue, 13 Jul 2021 14:34:14 GMT expires: - '-1' pragma: @@ -6952,7 +7201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '134' x-powered-by: - ASP.NET status: @@ -6973,15 +7222,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6990,7 +7239,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:53 GMT + - Tue, 13 Jul 2021 14:34:16 GMT expires: - '-1' pragma: @@ -7006,7 +7255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '133' x-powered-by: - ASP.NET status: @@ -7027,15 +7276,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7044,7 +7293,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:56 GMT + - Tue, 13 Jul 2021 14:34:17 GMT expires: - '-1' pragma: @@ -7060,7 +7309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '132' x-powered-by: - ASP.NET status: @@ -7081,15 +7330,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7098,7 +7347,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:57 GMT + - Tue, 13 Jul 2021 14:34:19 GMT expires: - '-1' pragma: @@ -7114,7 +7363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '131' x-powered-by: - ASP.NET status: @@ -7135,15 +7384,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7152,7 +7401,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:22:59 GMT + - Tue, 13 Jul 2021 14:34:20 GMT expires: - '-1' pragma: @@ -7168,7 +7417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '130' x-powered-by: - ASP.NET status: @@ -7189,15 +7438,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7206,7 +7455,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:00 GMT + - Tue, 13 Jul 2021 14:34:21 GMT expires: - '-1' pragma: @@ -7222,7 +7471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '129' x-powered-by: - ASP.NET status: @@ -7243,15 +7492,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7260,7 +7509,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:01 GMT + - Tue, 13 Jul 2021 14:34:23 GMT expires: - '-1' pragma: @@ -7276,7 +7525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '128' x-powered-by: - ASP.NET status: @@ -7297,15 +7546,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7314,7 +7563,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:03 GMT + - Tue, 13 Jul 2021 14:34:24 GMT expires: - '-1' pragma: @@ -7330,7 +7579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '127' x-powered-by: - ASP.NET status: @@ -7351,15 +7600,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7368,7 +7617,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:04 GMT + - Tue, 13 Jul 2021 14:34:25 GMT expires: - '-1' pragma: @@ -7384,7 +7633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '126' x-powered-by: - ASP.NET status: @@ -7405,15 +7654,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7422,7 +7671,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:05 GMT + - Tue, 13 Jul 2021 14:34:27 GMT expires: - '-1' pragma: @@ -7438,7 +7687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '125' x-powered-by: - ASP.NET status: @@ -7459,15 +7708,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7476,7 +7725,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:07 GMT + - Tue, 13 Jul 2021 14:34:28 GMT expires: - '-1' pragma: @@ -7492,7 +7741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '124' x-powered-by: - ASP.NET status: @@ -7513,15 +7762,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7530,7 +7779,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:08 GMT + - Tue, 13 Jul 2021 14:34:30 GMT expires: - '-1' pragma: @@ -7546,7 +7795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '123' x-powered-by: - ASP.NET status: @@ -7567,15 +7816,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7584,7 +7833,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:09 GMT + - Tue, 13 Jul 2021 14:34:31 GMT expires: - '-1' pragma: @@ -7600,7 +7849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '122' x-powered-by: - ASP.NET status: @@ -7621,15 +7870,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7638,7 +7887,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:11 GMT + - Tue, 13 Jul 2021 14:34:33 GMT expires: - '-1' pragma: @@ -7654,7 +7903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '121' x-powered-by: - ASP.NET status: @@ -7675,15 +7924,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7692,7 +7941,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:12 GMT + - Tue, 13 Jul 2021 14:34:34 GMT expires: - '-1' pragma: @@ -7708,7 +7957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '120' x-powered-by: - ASP.NET status: @@ -7729,15 +7978,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7746,7 +7995,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:19 GMT + - Tue, 13 Jul 2021 14:34:35 GMT expires: - '-1' pragma: @@ -7762,7 +8011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '119' x-powered-by: - ASP.NET status: @@ -7783,15 +8032,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7800,7 +8049,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:20 GMT + - Tue, 13 Jul 2021 14:34:38 GMT expires: - '-1' pragma: @@ -7816,7 +8065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '118' x-powered-by: - ASP.NET status: @@ -7837,15 +8086,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7854,7 +8103,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:22 GMT + - Tue, 13 Jul 2021 14:34:39 GMT expires: - '-1' pragma: @@ -7870,7 +8119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '117' x-powered-by: - ASP.NET status: @@ -7891,15 +8140,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7908,7 +8157,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:23 GMT + - Tue, 13 Jul 2021 14:34:41 GMT expires: - '-1' pragma: @@ -7924,7 +8173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '116' x-powered-by: - ASP.NET status: @@ -7945,15 +8194,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7962,7 +8211,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:25 GMT + - Tue, 13 Jul 2021 14:34:42 GMT expires: - '-1' pragma: @@ -7978,7 +8227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '115' x-powered-by: - ASP.NET status: @@ -7999,15 +8248,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8016,7 +8265,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:26 GMT + - Tue, 13 Jul 2021 14:34:43 GMT expires: - '-1' pragma: @@ -8032,7 +8281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '114' x-powered-by: - ASP.NET status: @@ -8053,15 +8302,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8070,7 +8319,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:27 GMT + - Tue, 13 Jul 2021 14:34:46 GMT expires: - '-1' pragma: @@ -8086,7 +8335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '113' x-powered-by: - ASP.NET status: @@ -8107,15 +8356,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8124,7 +8373,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:29 GMT + - Tue, 13 Jul 2021 14:34:47 GMT expires: - '-1' pragma: @@ -8140,7 +8389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '112' x-powered-by: - ASP.NET status: @@ -8161,15 +8410,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8178,7 +8427,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:30 GMT + - Tue, 13 Jul 2021 14:34:48 GMT expires: - '-1' pragma: @@ -8194,7 +8443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '111' x-powered-by: - ASP.NET status: @@ -8215,15 +8464,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8232,7 +8481,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:32 GMT + - Tue, 13 Jul 2021 14:34:50 GMT expires: - '-1' pragma: @@ -8248,7 +8497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '110' x-powered-by: - ASP.NET status: @@ -8269,15 +8518,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8286,7 +8535,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:33 GMT + - Tue, 13 Jul 2021 14:34:52 GMT expires: - '-1' pragma: @@ -8302,7 +8551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '109' x-powered-by: - ASP.NET status: @@ -8323,15 +8572,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8340,7 +8589,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:34 GMT + - Tue, 13 Jul 2021 14:34:53 GMT expires: - '-1' pragma: @@ -8356,7 +8605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '108' x-powered-by: - ASP.NET status: @@ -8377,15 +8626,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8394,7 +8643,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:36 GMT + - Tue, 13 Jul 2021 14:34:54 GMT expires: - '-1' pragma: @@ -8410,7 +8659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '107' x-powered-by: - ASP.NET status: @@ -8431,15 +8680,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8448,7 +8697,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:37 GMT + - Tue, 13 Jul 2021 14:34:56 GMT expires: - '-1' pragma: @@ -8464,7 +8713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '106' x-powered-by: - ASP.NET status: @@ -8485,15 +8734,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8502,7 +8751,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:38 GMT + - Tue, 13 Jul 2021 14:34:58 GMT expires: - '-1' pragma: @@ -8518,7 +8767,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '105' x-powered-by: - ASP.NET status: @@ -8539,15 +8788,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8556,7 +8805,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:40 GMT + - Tue, 13 Jul 2021 14:34:59 GMT expires: - '-1' pragma: @@ -8572,7 +8821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '104' x-powered-by: - ASP.NET status: @@ -8593,15 +8842,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8610,7 +8859,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:41 GMT + - Tue, 13 Jul 2021 14:35:00 GMT expires: - '-1' pragma: @@ -8626,7 +8875,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '103' x-powered-by: - ASP.NET status: @@ -8647,15 +8896,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8664,7 +8913,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:44 GMT + - Tue, 13 Jul 2021 14:35:02 GMT expires: - '-1' pragma: @@ -8680,7 +8929,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '102' x-powered-by: - ASP.NET status: @@ -8701,15 +8950,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8718,7 +8967,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:45 GMT + - Tue, 13 Jul 2021 14:35:03 GMT expires: - '-1' pragma: @@ -8734,7 +8983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '101' x-powered-by: - ASP.NET status: @@ -8755,15 +9004,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8772,7 +9021,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:46 GMT + - Tue, 13 Jul 2021 14:35:05 GMT expires: - '-1' pragma: @@ -8788,7 +9037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '100' x-powered-by: - ASP.NET status: @@ -8809,15 +9058,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8826,7 +9075,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:48 GMT + - Tue, 13 Jul 2021 14:35:06 GMT expires: - '-1' pragma: @@ -8842,7 +9091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '99' x-powered-by: - ASP.NET status: @@ -8863,15 +9112,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8880,7 +9129,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:49 GMT + - Tue, 13 Jul 2021 14:35:07 GMT expires: - '-1' pragma: @@ -8896,7 +9145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' + - '98' x-powered-by: - ASP.NET status: @@ -8917,15 +9166,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8934,7 +9183,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:51 GMT + - Tue, 13 Jul 2021 14:35:09 GMT expires: - '-1' pragma: @@ -8950,7 +9199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' + - '97' x-powered-by: - ASP.NET status: @@ -8971,15 +9220,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8988,7 +9237,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:52 GMT + - Tue, 13 Jul 2021 14:35:10 GMT expires: - '-1' pragma: @@ -9004,7 +9253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' + - '96' x-powered-by: - ASP.NET status: @@ -9025,15 +9274,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9042,7 +9291,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:53 GMT + - Tue, 13 Jul 2021 14:35:12 GMT expires: - '-1' pragma: @@ -9058,7 +9307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' + - '95' x-powered-by: - ASP.NET status: @@ -9079,15 +9328,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9096,7 +9345,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:55 GMT + - Tue, 13 Jul 2021 14:35:14 GMT expires: - '-1' pragma: @@ -9112,7 +9361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' + - '94' x-powered-by: - ASP.NET status: @@ -9133,15 +9382,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9150,7 +9399,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:56 GMT + - Tue, 13 Jul 2021 14:35:15 GMT expires: - '-1' pragma: @@ -9166,7 +9415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' + - '93' x-powered-by: - ASP.NET status: @@ -9187,15 +9436,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9204,7 +9453,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:58 GMT + - Tue, 13 Jul 2021 14:35:17 GMT expires: - '-1' pragma: @@ -9220,7 +9469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' + - '92' x-powered-by: - ASP.NET status: @@ -9241,15 +9490,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9258,7 +9507,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:23:59 GMT + - Tue, 13 Jul 2021 14:35:18 GMT expires: - '-1' pragma: @@ -9274,7 +9523,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' + - '91' x-powered-by: - ASP.NET status: @@ -9295,15 +9544,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9312,7 +9561,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:00 GMT + - Tue, 13 Jul 2021 14:35:20 GMT expires: - '-1' pragma: @@ -9328,7 +9577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' + - '90' x-powered-by: - ASP.NET status: @@ -9349,15 +9598,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9366,7 +9615,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:02 GMT + - Tue, 13 Jul 2021 14:35:22 GMT expires: - '-1' pragma: @@ -9382,7 +9631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' + - '89' x-powered-by: - ASP.NET status: @@ -9403,15 +9652,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9420,7 +9669,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:03 GMT + - Tue, 13 Jul 2021 14:35:23 GMT expires: - '-1' pragma: @@ -9436,7 +9685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '88' x-powered-by: - ASP.NET status: @@ -9457,15 +9706,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9474,7 +9723,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:05 GMT + - Tue, 13 Jul 2021 14:35:25 GMT expires: - '-1' pragma: @@ -9490,7 +9739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' + - '87' x-powered-by: - ASP.NET status: @@ -9511,15 +9760,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9528,7 +9777,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:06 GMT + - Tue, 13 Jul 2021 14:35:26 GMT expires: - '-1' pragma: @@ -9544,7 +9793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '86' x-powered-by: - ASP.NET status: @@ -9565,15 +9814,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9582,7 +9831,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:07 GMT + - Tue, 13 Jul 2021 14:35:27 GMT expires: - '-1' pragma: @@ -9598,7 +9847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '85' x-powered-by: - ASP.NET status: @@ -9619,15 +9868,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9636,7 +9885,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:09 GMT + - Tue, 13 Jul 2021 14:35:29 GMT expires: - '-1' pragma: @@ -9652,7 +9901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' + - '84' x-powered-by: - ASP.NET status: @@ -9673,15 +9922,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9690,7 +9939,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:10 GMT + - Tue, 13 Jul 2021 14:35:30 GMT expires: - '-1' pragma: @@ -9706,7 +9955,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' + - '83' x-powered-by: - ASP.NET status: @@ -9727,15 +9976,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9744,7 +9993,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:12 GMT + - Tue, 13 Jul 2021 14:35:32 GMT expires: - '-1' pragma: @@ -9760,7 +10009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' + - '82' x-powered-by: - ASP.NET status: @@ -9781,15 +10030,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9798,7 +10047,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:13 GMT + - Tue, 13 Jul 2021 14:35:33 GMT expires: - '-1' pragma: @@ -9814,7 +10063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' + - '81' x-powered-by: - ASP.NET status: @@ -9835,15 +10084,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9852,7 +10101,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:15 GMT + - Tue, 13 Jul 2021 14:35:36 GMT expires: - '-1' pragma: @@ -9868,7 +10117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' + - '80' x-powered-by: - ASP.NET status: @@ -9889,15 +10138,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9906,7 +10155,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:16 GMT + - Tue, 13 Jul 2021 14:35:37 GMT expires: - '-1' pragma: @@ -9922,7 +10171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' + - '79' x-powered-by: - ASP.NET status: @@ -9943,15 +10192,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9960,7 +10209,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:18 GMT + - Tue, 13 Jul 2021 14:35:38 GMT expires: - '-1' pragma: @@ -9976,7 +10225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' + - '78' x-powered-by: - ASP.NET status: @@ -9997,15 +10246,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10014,7 +10263,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:19 GMT + - Tue, 13 Jul 2021 14:35:40 GMT expires: - '-1' pragma: @@ -10030,7 +10279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' + - '77' x-powered-by: - ASP.NET status: @@ -10051,15 +10300,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"InProgress","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"InProgress","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10068,7 +10317,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:24:21 GMT + - Tue, 13 Jul 2021 14:35:41 GMT expires: - '-1' pragma: @@ -10084,7 +10333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' + - '76' x-powered-by: - ASP.NET status: @@ -10105,15 +10354,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/285bcb25-05c7-47a1-9bdc-7a36ca2d2046?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/416abf46-07b4-4bb9-8d4d-67ea1a57f04f?api-version=2021-01-01 response: body: - string: '{"id":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","name":"285bcb25-05c7-47a1-9bdc-7a36ca2d2046","status":"Succeeded","startTime":"2021-06-21T17:22:44.7786759Z","endTime":"2021-06-21T17:22:44.7786759Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b1b09d6c-69f9-4196-99f2-7b733fb3ccd2"}}' + string: '{"id":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","name":"416abf46-07b4-4bb9-8d4d-67ea1a57f04f","status":"Succeeded","startTime":"2021-07-13T14:33:50.5504611Z","endTime":"2021-07-13T14:33:50.5504611Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"738dce9e-ee33-4174-b3d6-f843f0ef9eab"}}' headers: cache-control: - no-cache @@ -10122,7 +10371,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 17:29:47 GMT + - Tue, 13 Jul 2021 14:35:43 GMT expires: - '-1' pragma: @@ -10138,7 +10387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '75' x-powered-by: - ASP.NET status: @@ -10159,25 +10408,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.26.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b1b09d6c-69f9-4196-99f2-7b733fb3ccd2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/738dce9e-ee33-4174-b3d6-f843f0ef9eab?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b1b09d6c-69f9-4196-99f2-7b733fb3ccd2","name":"b1b09d6c-69f9-4196-99f2-7b733fb3ccd2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.471374S","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-06-21T17:22:44.7786759Z","endTime":"2021-06-21T17:24:36.2500499Z","activityId":"49295b24-d2b5-11eb-82b1-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/738dce9e-ee33-4174-b3d6-f843f0ef9eab","name":"738dce9e-ee33-4174-b3d6-f843f0ef9eab","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.5074225S","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-07-13T14:33:50.5504611Z","endTime":"2021-07-13T14:35:42.0578836Z","activityId":"5512447a-e3e7-11eb-9c65-00155ddc6812"}}' headers: cache-control: - no-cache content-length: - - '972' + - '973' content-type: - application/json date: - - Mon, 21 Jun 2021 17:29:47 GMT + - Tue, 13 Jul 2021 14:35:44 GMT expires: - '-1' pragma: @@ -10204,7 +10453,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -10216,9 +10465,9 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.26.0 azsdk-python-mgmt-recoveryservices/2.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2021-03-01 response: body: string: '' @@ -10228,7 +10477,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 17:29:54 GMT + - Tue, 13 Jul 2021 14:35:51 GMT expires: - '-1' pragma: @@ -10238,7 +10487,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/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py index 51153908713..1630ddbf3e3 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 @@ -9,7 +9,7 @@ import time from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, ResourceGroupPreparer, \ - StorageAccountPreparer, record_only + StorageAccountPreparer, KeyVaultPreparer, record_only from azure.mgmt.recoveryservicesbackup.models import StorageType from azure_devtools.scenario_tests import AllowLargeResponse @@ -749,3 +749,323 @@ def test_backup_archive (self, resource_group, vault_name, vm_name, storage_acco self.check("tierType", '{rp1_tier}'), self.check("resourceGroup", '{rg}') ]) + + + @ResourceGroupPreparer() + @VaultPreparer() + def test_backup_identity(self, resource_group, vault_name): + self.kwargs.update({ + 'vault': vault_name, + 'rg': resource_group, + }) + + + self.kwargs['identity1'] = self.create_random_name('clitest-identity', 50) + self.kwargs['identity1_id'] = self.cmd('identity create -n {identity1} -g {rg} --query id').get_output_in_json() + + + self.kwargs['identity2'] = self.create_random_name('clitest-identity', 50) + self.kwargs['identity2_id'] = self.cmd('identity create -n {identity2} -g {rg} --query id').get_output_in_json() + + self.kwargs['identity3'] = self.create_random_name('clitest-identity', 50) + self.kwargs['identity3_id'] = self.cmd('identity create -n {identity3} -g {rg} --query id').get_output_in_json() + + userMSI_json = self.cmd('backup vault identity assign --user-assigned {identity1_id} {identity2_id} -g {rg} -v {vault}', checks=[ + self.check("identity.type", "UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity1_id'], userMSI) + self.assertIn(self.kwargs['identity2_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity assign --system-assigned -g {rg} -v {vault}', checks=[ + self.check("identity.type", "SystemAssigned, UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity1_id'], userMSI) + self.assertIn(self.kwargs['identity2_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity assign --user-assigned {identity3_id} -g {rg} -v {vault}', checks=[ + self.check("identity.type", "SystemAssigned, UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity1_id'], userMSI) + self.assertIn(self.kwargs['identity2_id'], userMSI) + self.assertIn(self.kwargs['identity3_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity remove --system-assigned --user-assigned {identity1_id} -g {rg} -v {vault}', checks=[ + self.check("identity.type", "UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity2_id'], userMSI) + self.assertIn(self.kwargs['identity3_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity assign --system-assigned --user-assigned {identity1_id} -g {rg} -v {vault}', checks=[ + self.check("identity.type", "SystemAssigned, UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity1_id'], userMSI) + self.assertIn(self.kwargs['identity2_id'], userMSI) + self.assertIn(self.kwargs['identity3_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity remove --system-assigned --user-assigned -g {rg} -v {vault}', checks=[ + self.check("identity.type", "None"), + self.check("identity.userAssignedIdentities", None), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI_json = self.cmd('backup vault identity assign --system-assigned -g {rg} -v {vault}', checks=[ + self.check("identity.type", "SystemAssigned"), + self.check("identity.userAssignedIdentities", None), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI_json = self.cmd('backup vault identity assign --user-assigned {identity1_id} {identity2_id} -g {rg} -v {vault}', checks=[ + self.check("identity.type", "SystemAssigned, UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity1_id'], userMSI) + self.assertIn(self.kwargs['identity2_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity remove --system-assigned -g {rg} -v {vault}', checks=[ + self.check("identity.type", "UserAssigned"), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + userMSI = list(userMSI_json['identity']['userAssignedIdentities'].keys()) + + self.assertIn(self.kwargs['identity1_id'], userMSI) + self.assertIn(self.kwargs['identity2_id'], userMSI) + + userMSI_json = self.cmd('backup vault identity remove --user-assigned -g {rg} -v {vault}', checks=[ + self.check("identity.type", "None"), + self.check("identity.userAssignedIdentities", None), + self.check("properties.provisioningState", "Succeeded") + ]).get_output_in_json() + + + @ResourceGroupPreparer() + @VaultPreparer(parameter_name='vault1') + @VaultPreparer(parameter_name='vault2') + @KeyVaultPreparer() + def test_backup_encryption(self, resource_group, resource_group_location, vault1, vault2, key_vault): + self.kwargs.update({ + 'loc' : resource_group_location, + 'vault1': vault1, + 'vault2': vault2, + 'rg': resource_group, + 'key_vault': key_vault, + 'key1': self.create_random_name('clitest-key1', 20), + 'key2': self.create_random_name('clitest-key2', 20), + 'identity1': self.create_random_name('clitest-identity1', 50), + 'identity2': self.create_random_name('clitest-identity2', 50), + 'identity_permissions': "get list unwrapKey wrapKey", + }) + + + self.kwargs['identity1_id'] = self.cmd('identity create -n {identity1} -g {rg} --query id').get_output_in_json() + self.kwargs['identity1_principalid'] = self.cmd('identity show -n {identity1} -g {rg} --query principalId').get_output_in_json() + + self.kwargs['identity2_id'] = self.cmd('identity create -n {identity2} -g {rg} --query id').get_output_in_json() + self.kwargs['identity2_principalid'] = self.cmd('identity show -n {identity2} -g {rg} --query principalId').get_output_in_json() + + + userMSI_v1_json = self.cmd('backup vault identity assign --user-assigned {identity1_id} {identity2_id} -g {rg} -v {vault1}').get_output_in_json() + + system_v1_json = self.cmd('backup vault identity assign --system-assigned -g {rg} -v {vault1}').get_output_in_json() + + self.kwargs['system1_principalid'] = system_v1_json['identity']['principalId'] + + userMSI1_v2_json = self.cmd('backup vault identity assign --user-assigned {identity1_id} -g {rg} -v {vault2}').get_output_in_json() + + system_v2_json = self.cmd('backup vault identity assign --system-assigned -g {rg} -v {vault2}').get_output_in_json() + + self.kwargs['system2_principalid'] = system_v2_json['identity']['principalId'] + + self.cmd('keyvault update --name {key_vault} --enable-soft-delete --enable-purge-protection') + + key1_json = self.cmd('keyvault key create --vault-name {key_vault} -n {key1} --kty RSA --disabled false --ops decrypt encrypt sign unwrapKey verify wrapKey --size 2048', checks=[ + self.check("attributes.enabled", True), + self.check('key.kty', "RSA"), + ]).get_output_in_json() + + keyOps1 = key1_json['key']['keyOps'] + self.assertIn("decrypt", keyOps1) + self.assertIn("encrypt", keyOps1) + self.assertIn("sign", keyOps1) + self.assertIn("unwrapKey", keyOps1) + self.assertIn("verify", keyOps1) + self.assertIn("wrapKey", keyOps1) + + key2_json = self.cmd('keyvault key create --vault-name {key_vault} -n {key2} --kty RSA --disabled false --ops decrypt encrypt sign unwrapKey verify wrapKey --size 2048', checks=[ + self.check("attributes.enabled", True), + self.check('key.kty', "RSA"), + ]).get_output_in_json() + + keyOps2 = key2_json['key']['keyOps'] + self.assertIn("decrypt", keyOps2) + self.assertIn("encrypt", keyOps2) + self.assertIn("sign", keyOps2) + self.assertIn("unwrapKey", keyOps2) + self.assertIn("verify", keyOps2) + self.assertIn("wrapKey", keyOps2) + + + self.kwargs['key1_id'] = key1_json['key']['kid'] + self.kwargs['key2_id'] = key2_json['key']['kid'] + + policy1_json = self.cmd('keyvault set-policy --name {key_vault} --object-id {identity1_principalid} --key-permissions {identity_permissions}').get_output_in_json() + identity1_has_access = False + + access_policy1 = policy1_json['properties']['accessPolicies'] + for element in access_policy1: + if element['objectId'] == self.kwargs['identity1_principalid']: + access_policy1 = element + identity1_has_access = True + + self.assertEqual(identity1_has_access, True) + key_permissions = access_policy1['permissions']['keys'] + self.assertIn("list", key_permissions) + self.assertIn("wrapKey", key_permissions) + self.assertIn("get", key_permissions) + self.assertIn("unwrapKey", key_permissions) + + policy2_json = self.cmd('keyvault set-policy --name {key_vault} --object-id {identity2_principalid} --key-permissions {identity_permissions}').get_output_in_json() + identity2_has_access = False + + access_policy2 = policy2_json['properties']['accessPolicies'] + for element in access_policy2: + if element['objectId'] == self.kwargs['identity2_principalid']: + access_policy2 = element + identity2_has_access = True + + self.assertEqual(identity2_has_access, True) + key_permissions = access_policy2['permissions']['keys'] + self.assertIn("list", key_permissions) + self.assertIn("wrapKey", key_permissions) + self.assertIn("get", key_permissions) + self.assertIn("unwrapKey", key_permissions) + + policy3_json = self.cmd('keyvault set-policy --name {key_vault} --object-id {system1_principalid} --key-permissions {identity_permissions}').get_output_in_json() + system1_has_access = False + + access_policy3 = policy3_json['properties']['accessPolicies'] + for element in access_policy3: + if element['objectId'] == self.kwargs['system1_principalid']: + access_policy3 = element + system1_has_access = True + + self.assertEqual(system1_has_access, True) + key_permissions = access_policy3['permissions']['keys'] + self.assertIn("list", key_permissions) + self.assertIn("wrapKey", key_permissions) + self.assertIn("get", key_permissions) + self.assertIn("unwrapKey", key_permissions) + + policy4_json = self.cmd('keyvault set-policy --name {key_vault} --object-id {system2_principalid} --key-permissions {identity_permissions}').get_output_in_json() + system2_has_access = False + + access_policy4 = policy4_json['properties']['accessPolicies'] + for element in access_policy4: + if element['objectId'] == self.kwargs['system2_principalid']: + access_policy4 = element + system2_has_access = True + + self.assertEqual(system2_has_access, True) + key_permissions = access_policy4['permissions']['keys'] + self.assertIn("list", key_permissions) + self.assertIn("wrapKey", key_permissions) + self.assertIn("get", key_permissions) + self.assertIn("unwrapKey", key_permissions) + + + self.cmd('backup vault encryption update --encryption-key-id {key1_id} --mi-user-assigned {identity1_id} -g {rg} -v {vault1}') + + self.cmd('backup vault encryption show -v {vault1} -g {rg}', checks=[ + self.check("properties.encryptionAtRestType", "CustomerManaged"), + self.check("properties.infrastructureEncryptionState", "Disabled"), + self.check('properties.keyUri', '{key1_id}'), + self.check('properties.userAssignedIdentity', '{identity1_id}'), + self.check('properties.useSystemAssignedIdentity', False), + self.check('properties.lastUpdateStatus', 'Succeeded') + ]) + + self.cmd('backup vault encryption update --encryption-key-id {key1_id} --mi-user-assigned {identity2_id} -g {rg} -v {vault1}') + + self.cmd('backup vault encryption show -v {vault1} -g {rg}', checks=[ + self.check("properties.encryptionAtRestType", "CustomerManaged"), + self.check("properties.infrastructureEncryptionState", "Disabled"), + self.check('properties.keyUri', '{key1_id}'), + self.check('properties.userAssignedIdentity', '{identity2_id}'), + self.check('properties.useSystemAssignedIdentity', False), + self.check('properties.lastUpdateStatus', 'Succeeded') + ]) + + self.cmd('backup vault encryption update --encryption-key-id {key2_id} --mi-system-assigned -g {rg} -v {vault1}') + + self.cmd('backup vault encryption show -v {vault1} -g {rg}', checks=[ + self.check("properties.encryptionAtRestType", "CustomerManaged"), + self.check("properties.infrastructureEncryptionState", "Disabled"), + self.check('properties.keyUri', '{key2_id}'), + self.check('properties.userAssignedIdentity', None), + self.check('properties.useSystemAssignedIdentity', True), + self.check('properties.lastUpdateStatus', 'Succeeded') + ]) + + self.cmd('backup vault encryption update --encryption-key-id {key1_id} -g {rg} -v {vault1}') + + self.cmd('backup vault encryption show -v {vault1} -g {rg}', checks=[ + self.check("properties.encryptionAtRestType", "CustomerManaged"), + self.check("properties.infrastructureEncryptionState", "Disabled"), + self.check('properties.keyUri', '{key1_id}'), + self.check('properties.userAssignedIdentity', None), + self.check('properties.useSystemAssignedIdentity', True), + self.check('properties.lastUpdateStatus', 'Succeeded') + ]) + + + self.cmd('backup vault encryption update --encryption-key-id {key2_id} --mi-system-assigned --infrastructure-encryption Enabled -g {rg} -v {vault2}') + + self.cmd('backup vault encryption show -v {vault2} -g {rg}', checks=[ + self.check("properties.encryptionAtRestType", "CustomerManaged"), + self.check("properties.infrastructureEncryptionState", "Enabled"), + self.check('properties.keyUri', '{key2_id}'), + self.check('properties.userAssignedIdentity', None), + self.check('properties.useSystemAssignedIdentity', True), + self.check('properties.lastUpdateStatus', 'Succeeded') + ]) + + self.cmd('backup vault encryption update --encryption-key-id {key1_id} --mi-user-assigned {identity1_id} -g {rg} -v {vault2}') + + self.cmd('backup vault encryption show -v {vault2} -g {rg}', checks=[ + self.check("properties.encryptionAtRestType", "CustomerManaged"), + self.check("properties.infrastructureEncryptionState", "Enabled"), + self.check('properties.keyUri', '{key1_id}'), + self.check('properties.userAssignedIdentity', '{identity1_id}'), + self.check('properties.useSystemAssignedIdentity', False), + self.check('properties.lastUpdateStatus', 'Succeeded') + ]) + + + + + diff --git a/src/azure-cli/recoveryconfig.json b/src/azure-cli/recoveryconfig.json new file mode 100644 index 00000000000..b0eccf8e27d --- /dev/null +++ b/src/azure-cli/recoveryconfig.json @@ -0,0 +1 @@ +{"alternate_directory_paths":null,"container_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","container_uri":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","database_name":null,"filepath":"C:","item_type":"SQL","item_uri":"SQLDataBase;mssqlserver;navigate-testdb2","log_point_in_time":null,"recovery_mode":"FileRecovery","recovery_point_id":"6412167224530","restore_mode":"AlternateLocation","source_resource_id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win"} \ No newline at end of file diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index b7fb91afa10..f725cd04a26 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -66,7 +66,7 @@ azure-mgmt-network==19.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==8.1.0b4 -azure-mgmt-recoveryservices==1.0.0 +azure-mgmt-recoveryservices==2.0.0 azure-mgmt-recoveryservicesbackup==0.12.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 27fcd86a026..11c6c15f0d7 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -66,7 +66,7 @@ azure-mgmt-network==19.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==8.1.0b4 -azure-mgmt-recoveryservices==1.0.0 +azure-mgmt-recoveryservices==2.0.0 azure-mgmt-recoveryservicesbackup==0.12.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index d35de0a4c8c..260d1253de2 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -66,7 +66,7 @@ azure-mgmt-network==19.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==8.1.0b4 -azure-mgmt-recoveryservices==1.0.0 +azure-mgmt-recoveryservices==2.0.0 azure-mgmt-recoveryservicesbackup==0.12.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index eb8bf621400..1dd76982fe4 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -110,7 +110,7 @@ 'azure-mgmt-privatedns~=1.0.0', 'azure-mgmt-rdbms~=8.1.0b4', 'azure-mgmt-recoveryservicesbackup~=0.12.0', - 'azure-mgmt-recoveryservices~=1.0.0', + 'azure-mgmt-recoveryservices~=2.0.0', 'azure-mgmt-redhatopenshift==0.1.0', 'azure-mgmt-redis~=7.0.0rc1', 'azure-mgmt-relay~=0.1.0',